summaryrefslogtreecommitdiff
path: root/scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-04 16:27:56 +0200
committerNoel Grandin <noel@peralex.com>2014-08-05 11:31:50 +0200
commitd26540bb05b0443e7988da34372c86f88cbf1f6c (patch)
tree3f24ac9aa08992ff1e90211b8681711ad92937d4 /scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java
parentf124688cfdfbe96ff2be5ab44ea5023725548146 (diff)
java: remove unused fields
Change-Id: I6c93864f501f646a8940eac221a88c87b3f75525
Diffstat (limited to 'scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java')
-rw-r--r--scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java b/scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java
index fa95d065d67a..8cafb62a0f51 100644
--- a/scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java
+++ b/scripting/java/com/sun/star/script/framework/container/DeployedUnoPackagesDB.java
@@ -34,10 +34,6 @@ import org.w3c.dom.*;
public class DeployedUnoPackagesDB {
- // File name to be used for parcel descriptor files
- private static final String
- PARCEL_DESCRIPTOR_NAME = "unopkg-desc.xml";
-
// This is the default contents of a parcel descriptor to be used when
// creating empty descriptors
private static final byte[] EMPTY_DOCUMENT =
@@ -45,7 +41,6 @@ public class DeployedUnoPackagesDB {
"<unopackages xmlns:unopackages=\"unopackages.dtd\">\n" +
"</unopackages>").getBytes();
- private File file = null;
private Document document = null;
public DeployedUnoPackagesDB() throws IOException {