Ignore:
Timestamp:
2013-08-30T11:36:28+02:00 (11 years ago)
Author:
Don-vip
Message:

fix #8895, fix #9030 - fix regression in geottaged pictures support caused by metadata-extractor upgrade, enhance ExifReader, add JUnit tests + javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/drew/metadata/exif/ExifReader.java

    r6127 r6209  
    2121package com.drew.metadata.exif;
    2222
     23import java.util.HashSet;
     24import java.util.Set;
     25
    2326import com.drew.lang.BufferBoundsException;
    2427import com.drew.lang.BufferReader;
     
    2831import com.drew.metadata.Metadata;
    2932import com.drew.metadata.MetadataReader;
    30 
    31 import java.util.HashSet;
    32 import java.util.Set;
    3333
    3434/**
     
    234234                // rubbish until we go out of bounds (which may be a while).  Exit now.
    235235                directory.addError("Invalid TIFF tag format code: " + formatCode);
    236                 return;
     236                continue; // JOSM patch to fix #9030
    237237            }
    238238
Note: See TracChangeset for help on using the changeset viewer.