From c0415d5f1e96304b0d528de92b6ba0cdf31b503b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 15 Aug 2014 16:38:03 +0200 Subject: java: remove unnecessary constructor declarations in the absence of any other constructors, the compiler will automatically generate a public no-arg constructor Change-Id: I70eca507cd8e16e33580b3398d41d70690bc2909 --- ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'ridljar') diff --git a/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java b/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java index fef19cf7f200..b31c04018d53 100644 --- a/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java +++ b/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java @@ -637,7 +637,6 @@ public final class TypeDescription implements ITypeDescription { } private static final class List { - public List() {} public void add(TypeDescription desc) { if (!list.contains(desc)) { @@ -654,7 +653,6 @@ public final class TypeDescription implements ITypeDescription { } private static final class Cache { - public Cache() {} public TypeDescription get(String typeName) { synchronized (map) { -- cgit