Changeset 13061 in josm for trunk/src/com/drew/metadata/exif/ExifSubIFDDirectory.java
- Timestamp:
- 2017-10-30T22:46:09+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/drew/metadata/exif/ExifSubIFDDirectory.java
r10862 r13061 1 1 /* 2 * Copyright 2002-201 6Drew Noakes2 * Copyright 2002-2017 Drew Noakes 3 3 * 4 4 * Licensed under the Apache License, Version 2.0 (the "License"); … … 21 21 package com.drew.metadata.exif; 22 22 23 import com.drew.lang.annotations.NotNull; 24 import com.drew.lang.annotations.Nullable; 25 23 26 import java.util.Date; 24 27 import java.util.HashMap; 25 28 import java.util.TimeZone; 26 27 import com.drew.lang.annotations.NotNull;28 import com.drew.lang.annotations.Nullable;29 29 30 30 /** … … 33 33 * @author Drew Noakes https://drewnoakes.com 34 34 */ 35 @SuppressWarnings("WeakerAccess") 35 36 public class ExifSubIFDDirectory extends ExifDirectoryBase 36 37 { … … 88 89 */ 89 90 @Nullable 90 public Date getDateOriginal(TimeZone timeZone) 91 public Date getDateOriginal(@Nullable TimeZone timeZone) 91 92 { 92 93 return getDate(TAG_DATETIME_ORIGINAL, getString(TAG_SUBSECOND_TIME_ORIGINAL), timeZone); … … 116 117 */ 117 118 @Nullable 118 public Date getDateDigitized(TimeZone timeZone) 119 public Date getDateDigitized(@Nullable TimeZone timeZone) 119 120 { 120 121 return getDate(TAG_DATETIME_DIGITIZED, getString(TAG_SUBSECOND_TIME_DIGITIZED), timeZone);
Note:
See TracChangeset
for help on using the changeset viewer.
