From ff3b3bed94b809acbb5b4eb6e52f9b6d8b9398ee Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 5 Nov 2015 12:29:43 +0200 Subject: java: make inner classes static where possible Change-Id: Icc6444ad15d9f4b50858d8c1b1d3adeaeac40926 --- comphelper/qa/complex/comphelper/Map.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'comphelper/qa') 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." ); } -- cgit