diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-11 15:58:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-14 10:59:48 +0200 |
commit | ac5954d7c540f34702033d7d951d1d16cb96730a (patch) | |
tree | 310ba9698a10c74662de0714db683f932de32b0c /jurt | |
parent | 89c0a2b2f65beeb6f42d3334662100a13169a8d6 (diff) |
java: remove commented out code
Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
Diffstat (limited to 'jurt')
3 files changed, 1 insertions, 11 deletions
diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java index cde06ab1f56c..a8dd0ad8949d 100644 --- a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java +++ b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java @@ -109,9 +109,6 @@ public final class pipeAcceptor implements XAcceptor { com.sun.star.lang.IllegalArgumentException { throw new java.lang.NoSuchMethodError( "pipeAcceptor not fully implemented yet" ); - - //try { return new PipeConnection( connectionDescription ); } - //catch ( java.io.IOException e ) { return null; } } /** diff --git a/jurt/com/sun/star/lib/uno/environments/java/java_environment.java b/jurt/com/sun/star/lib/uno/environments/java/java_environment.java index 01285c257e84..654b9ad51158 100644 --- a/jurt/com/sun/star/lib/uno/environments/java/java_environment.java +++ b/jurt/com/sun/star/lib/uno/environments/java/java_environment.java @@ -118,13 +118,6 @@ public final class java_environment implements IEnvironment { */ public void list() { // TODO??? -// synchronized (proxies) { -// System.err.println("##### " + getClass().getName() + ".list: " -// + getName() + ", " + getContext()); -// for (Iterator it = proxies.values().iterator(); it.hasNext();) { -// System.err.println("#### entry: " + it.next()); -// } -// } } /** diff --git a/jurt/test/com/sun/star/lib/uno/protocols/urp/Marshaling_Test.java b/jurt/test/com/sun/star/lib/uno/protocols/urp/Marshaling_Test.java index d9127e3804cc..a8290af77324 100644 --- a/jurt/test/com/sun/star/lib/uno/protocols/urp/Marshaling_Test.java +++ b/jurt/test/com/sun/star/lib/uno/protocols/urp/Marshaling_Test.java @@ -67,7 +67,7 @@ public final class Marshaling_Test { new Any(new Type(Integer.class), new Integer(10)), // Any as Any null, new TestPrimitiveStruct(), - x, //new TestPrimitiveSeqStruct(), + x, new byte[]{1,2,3,4,5,6,7}, // primitive sequence new int[]{7,6,5,4,3,2,1}, // primitive sequence new Object[]{new Integer(123), new String("hallo")}, // any sequence |