Ignore:
Timestamp:
2017-10-30T22:46:09+01:00 (6 years ago)
Author:
Don-vip
Message:

fix #15505 - update to metadata-extractor 2.10.1

File:
1 edited

Legend:

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

    r10862 r13061  
    11/*
    2  * Copyright 2002-2016 Drew Noakes
     2 * Copyright 2002-2017 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    5151    public static Age fromPanasonicString(@NotNull String s)
    5252    {
    53         if (s == null)
    54             throw new NullPointerException();
    55 
    5653        if (s.length() != 19 || s.startsWith("9999:99:99"))
    5754            return null;
     
    143140
    144141    @Override
    145     public boolean equals(Object o)
     142    public boolean equals(@Nullable Object o)
    146143    {
    147144        if (this == o) return true;
Note: See TracChangeset for help on using the changeset viewer.