diff options
author | Elliott Hughes <enh@google.com> | 2010-02-01 18:19:28 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-02-01 18:19:28 -0800 |
commit | e5a4be15160c6f2cf54729ab29de21c0944dfbce (patch) | |
tree | 27f642d50b7d9362ce7847fed0b0d5dc63c5d9bb | |
parent | b46308866f526cc509b000b72113360cef7196ee (diff) | |
download | libcore-e5a4be15160c6f2cf54729ab29de21c0944dfbce.zip libcore-e5a4be15160c6f2cf54729ab29de21c0944dfbce.tar.gz libcore-e5a4be15160c6f2cf54729ab29de21c0944dfbce.tar.bz2 |
Add a missing "static", found by FindBugs.
-rw-r--r-- | luni/src/main/java/java/net/AddressCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/main/java/java/net/AddressCache.java b/luni/src/main/java/java/net/AddressCache.java index 8388b48..c0d8d97 100644 --- a/luni/src/main/java/java/net/AddressCache.java +++ b/luni/src/main/java/java/net/AddressCache.java @@ -47,7 +47,7 @@ class AddressCache { // The actual cache. private final Map<String, AddressCacheEntry> map; - class AddressCacheEntry { + static class AddressCacheEntry { // The addresses. May be the empty array for a negative cache entry. InetAddress[] addresses; |