Ignore:
Timestamp:
2017-10-30T22:46:09+01:00 (8 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/exif/ExifSubIFDDirectory.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");
     
    2121package com.drew.metadata.exif;
    2222
     23import com.drew.lang.annotations.NotNull;
     24import com.drew.lang.annotations.Nullable;
     25
    2326import java.util.Date;
    2427import java.util.HashMap;
    2528import java.util.TimeZone;
    26 
    27 import com.drew.lang.annotations.NotNull;
    28 import com.drew.lang.annotations.Nullable;
    2929
    3030/**
     
    3333 * @author Drew Noakes https://drewnoakes.com
    3434 */
     35@SuppressWarnings("WeakerAccess")
    3536public class ExifSubIFDDirectory extends ExifDirectoryBase
    3637{
     
    8889     */
    8990    @Nullable
    90     public Date getDateOriginal(TimeZone timeZone)
     91    public Date getDateOriginal(@Nullable TimeZone timeZone)
    9192    {
    9293        return getDate(TAG_DATETIME_ORIGINAL, getString(TAG_SUBSECOND_TIME_ORIGINAL), timeZone);
     
    116117     */
    117118    @Nullable
    118     public Date getDateDigitized(TimeZone timeZone)
     119    public Date getDateDigitized(@Nullable TimeZone timeZone)
    119120    {
    120121        return getDate(TAG_DATETIME_DIGITIZED, getString(TAG_SUBSECOND_TIME_DIGITIZED), timeZone);
Note: See TracChangeset for help on using the changeset viewer.