summaryrefslogtreecommitdiff
path: root/comphelper/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-05 12:29:43 +0200
committerNoel Grandin <noel@peralex.com>2015-11-05 13:43:01 +0200
commitff3b3bed94b809acbb5b4eb6e52f9b6d8b9398ee (patch)
tree6fc973228c66b8251ddb8dde3ba7003ebb8b3eb0 /comphelper/qa
parent9e8ff13eb2405f7e3dcb4f90cb38e9e4b1da2bd5 (diff)
java: make inner classes static where possible
Change-Id: Icc6444ad15d9f4b50858d8c1b1d3adeaeac40926
Diffstat (limited to 'comphelper/qa')
-rw-r--r--comphelper/qa/complex/comphelper/Map.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/qa/complex/comphelper/Map.java b/comphelper/qa/complex/comphelper/Map.java
index cb6c983e6daf..278f5a79923c 100644
--- a/comphelper/qa/complex/comphelper/Map.java
+++ b/comphelper/qa/complex/comphelper/Map.java
@@ -254,11 +254,11 @@ public class Map
return someValue;
}
- private class DummyInterface implements XInterface
+ private static class DummyInterface implements XInterface
{
}
- private class DummySet implements XSet
+ private static class DummySet implements XSet
{
public boolean has( Object arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }
public void insert( Object arg0 ) { throw new UnsupportedOperationException( "Not implemented." ); }