Ignore:
Timestamp:
2019-07-07T01:56:46+02:00 (6 years ago)
Author:
Don-vip
Message:

see #17848 - update to metadata-extractor 2.12.0

File:
1 edited

Legend:

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

    r13061 r15217  
    111111        if (((v >> 1) & 1) != 0) sb.append("Noise Filter, ");
    112112        if (((v >> 2) & 1) != 0) sb.append("Noise Filter (ISO Boost), ");
    113 
    114         return sb.substring(0, sb.length() - 2);
     113        if (((v >> 3) & 1) != 0) sb.append("Noise Filter (Auto), ");
     114       
     115        if (sb.length() > 2) {
     116            sb.delete(sb.length() - 2, sb.length());
     117        }
     118        return sb.toString();
    115119    }
    116120
Note: See TracChangeset for help on using the changeset viewer.