diff options
Diffstat (limited to 'javaunohelper')
-rw-r--r-- | javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java b/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java index 9a67b2049f5c..28a277994bac 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java @@ -27,7 +27,7 @@ import com.sun.star.lib.uno.environments.java.java_environment; public class ProxyProvider { - static java_environment env= new java_environment(null); + private static java_environment env= new java_environment(null); /** returns Holder proxy objects for the specified interface. If the method is called * several times with the same arguments then each time a new HolderProxy is returned. @@ -61,7 +61,7 @@ public class ProxyProvider class Proxy implements IQueryInterface, XEventListener { - String oid; + private String oid; Type type; Proxy(String oid, Type t) { this.oid = oid; |