summaryrefslogtreecommitdiff
path: root/jurt
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-15 16:38:03 +0200
committerNoel Grandin <noel@peralex.com>2014-08-20 12:12:15 +0200
commitc0415d5f1e96304b0d528de92b6ba0cdf31b503b (patch)
tree0aa3cf4fe10d6bf47c8419eb121f8b7357f30f9f /jurt
parent6884ef6317ddc29a713a342fb102e28ebc8fa5cc (diff)
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
Diffstat (limited to 'jurt')
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java1
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java1
2 files changed, 0 insertions, 2 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java
index 9d5fc2c6334b..9422742e1dc0 100644
--- a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java
+++ b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java
@@ -23,7 +23,6 @@ import java.util.HashMap;
import java.util.WeakHashMap;
final class JavaThreadPoolFactory {
- public JavaThreadPoolFactory() {}
public IThreadPool createThreadPool() {
return new JavaThreadPool(this);
diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java b/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java
index 18005bd817c7..2492644a2e63 100644
--- a/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java
+++ b/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java
@@ -24,7 +24,6 @@ import java.util.HashMap;
import java.util.Stack;
final class PendingRequests {
- public PendingRequests() {}
public synchronized void push(ThreadId tid, Item item) {
Stack<Item> s = map.get(tid);