summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorPaulo Casanova <pasc@google.com>2017-02-06 14:14:18 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-02-06 14:14:18 +0000
commit017bc62266b3ec65ac9101ee2f9b8add33736b8b (patch)
tree5cc23fe61a890fc4234df38926db10f3ded9bf67 /src/main
parentbdfecc5893987534318e67261405d110f291d8f8 (diff)
parentef12a6f3d04ea05d88e319610dbee6b31b460d5d (diff)
downloadapkzlib-017bc62266b3ec65ac9101ee2f9b8add33736b8b.tar.gz
Merge "Added IncrementalFileMerger; update MergeJavaRes" into studio-master-dev
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/android/apkzlib/utils/CachedSupplier.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/android/apkzlib/utils/CachedSupplier.java b/src/main/java/com/android/apkzlib/utils/CachedSupplier.java
index 3f0e79f..c9b1ed1 100644
--- a/src/main/java/com/android/apkzlib/utils/CachedSupplier.java
+++ b/src/main/java/com/android/apkzlib/utils/CachedSupplier.java
@@ -45,7 +45,8 @@ import javax.annotation.Nonnull;
public class CachedSupplier<T> {
/**
- * The cached data, {@code null} if computation resulted in {@code null}.
+ * The cached data, {@code null} if computation resulted in {@code null}. It is also
+ * {@code null} if the cached data has not yet been computed.
*/
private T cached;