Skip to content

Commit 3fea8b0

Browse files
authored
Remove double semicolon (#489)
1 parent 2852266 commit 3fea8b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Extra/SFBModuleFile.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2011-2024 Stephen F. Booth <[email protected]>
2+
// Copyright (c) 2011-2025 Stephen F. Booth <[email protected]>
33
// Part of https://github.com/sbooth/SFBAudioEngine
44
// MIT license
55
//
@@ -86,7 +86,7 @@ - (BOOL)readPropertiesAndMetadataReturningError:(NSError **)error
8686
propertiesDictionary[SFBAudioPropertiesKeyDuration] = @(duh_get_length(duh) / (float)DUMB_SAMPLE_RATE);
8787

8888
self.properties = [[SFBAudioProperties alloc] initWithDictionaryRepresentation:propertiesDictionary];
89-
self.metadata = [[SFBAudioMetadata alloc] initWithDictionaryRepresentation:@{ SFBAudioMetadataKeyTitle: @(duh_get_tag(duh, "TITLE")) }];;
89+
self.metadata = [[SFBAudioMetadata alloc] initWithDictionaryRepresentation:@{ SFBAudioMetadataKeyTitle: @(duh_get_tag(duh, "TITLE")) }];
9090

9191
unload_duh(duh);
9292
dumbfile_close(df);

0 commit comments

Comments
 (0)