Skip to content

Commit

Permalink
Merge pull request #462 from drewnoakes/tidy-checked-exceptions
Browse files Browse the repository at this point in the history
Remove redundant exception declarations
  • Loading branch information
drewnoakes committed Jan 28, 2020
2 parents 99939be + 50fc96b commit d331ec2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/com/drew/imaging/ImageMetadataReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import com.drew.lang.annotations.NotNull;
import com.drew.metadata.Directory;
import com.drew.metadata.Metadata;
import com.drew.metadata.MetadataException;
import com.drew.metadata.Tag;
import com.drew.metadata.exif.ExifIFD0Directory;
import com.drew.metadata.file.FileSystemMetadataReader;
Expand Down Expand Up @@ -228,7 +227,7 @@ private ImageMetadataReader() throws Exception
*
* @param args the command line arguments
*/
public static void main(@NotNull String[] args) throws MetadataException, IOException
public static void main(@NotNull String[] args)
{
Collection<String> argList = new ArrayList<String>(Arrays.asList(args));
boolean markdownFormat = argList.remove("-markdown");
Expand Down

0 comments on commit d331ec2

Please sign in to comment.