summaryrefslogtreecommitdiffstats
path: root/luni
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2011-02-24 18:32:32 -0800
committerElliott Hughes <enh@google.com>2011-02-24 18:32:32 -0800
commit5e8d3957944a24ac8068e3faf7cfe1dc4f69b962 (patch)
treeca81d3612adcecd905f11694d12476216a29afc2 /luni
parent1736d135e80c41ced1a5a98436e8b8a922f6f1dd (diff)
downloadlibcore-5e8d3957944a24ac8068e3faf7cfe1dc4f69b962.zip
libcore-5e8d3957944a24ac8068e3faf7cfe1dc4f69b962.tar.gz
libcore-5e8d3957944a24ac8068e3faf7cfe1dc4f69b962.tar.bz2
Fix more FindBugs warnings: SIC_INNER_SHOULD_BE_STATIC.
"This class is an inner class, but does not use its embedded reference to the object which created it." Change-Id: I975a29744e334ace8604c2ebb70ceee7e731b0a9
Diffstat (limited to 'luni')
-rw-r--r--luni/src/main/java/org/xml/sax/helpers/XMLReaderAdapter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/main/java/org/xml/sax/helpers/XMLReaderAdapter.java b/luni/src/main/java/org/xml/sax/helpers/XMLReaderAdapter.java
index abd7e59..c683229 100644
--- a/luni/src/main/java/org/xml/sax/helpers/XMLReaderAdapter.java
+++ b/luni/src/main/java/org/xml/sax/helpers/XMLReaderAdapter.java
@@ -439,7 +439,7 @@ public class XMLReaderAdapter implements Parser, ContentHandler
/**
* Internal class to wrap a SAX2 Attributes object for SAX1.
*/
- final class AttributesAdapter implements AttributeList
+ static final class AttributesAdapter implements AttributeList
{
AttributesAdapter ()
{