java: remove unused fields
Change-Id: I6c93864f501f646a8940eac221a88c87b3f75525
This commit is contained in:
@@ -56,7 +56,6 @@ public class ParcelBrowseNode extends PropertySet
|
||||
private ScriptProvider provider;
|
||||
//private RootBrowseNode parent;
|
||||
private Collection<XBrowseNode> browsenodes;
|
||||
private String name;
|
||||
private ParcelContainer container;
|
||||
private Parcel parcel;
|
||||
public boolean deletable = true;
|
||||
@@ -66,7 +65,6 @@ public class ParcelBrowseNode extends PropertySet
|
||||
|
||||
public ParcelBrowseNode( ScriptProvider provider, ParcelContainer container, String parcelName ) {
|
||||
this.provider = provider;
|
||||
this.name = parcelName;
|
||||
this.container = container;
|
||||
|
||||
// TODO decide whether exception is propagated out or not
|
||||
|
@@ -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 {
|
||||
|
@@ -38,8 +38,6 @@ public class UCBStreamHandler extends URLStreamHandler {
|
||||
|
||||
public final static String separator = "/ucb/";
|
||||
|
||||
private XComponentContext m_xContext = null;
|
||||
private XMultiComponentFactory m_xMultiComponentFactory = null;
|
||||
private XSimpleFileAccess m_xSimpleFileAccess = null;
|
||||
private HashMap<String,InputStream> m_jarStreamMap = new HashMap<String,InputStream>(12);
|
||||
public static String m_ucbscheme;
|
||||
@@ -47,7 +45,6 @@ public class UCBStreamHandler extends URLStreamHandler {
|
||||
public UCBStreamHandler( XComponentContext ctxt, String scheme, XSimpleFileAccess xSFA )
|
||||
{
|
||||
LogUtils.DEBUG( "UCBStreamHandler ctor, scheme = " + scheme );
|
||||
this.m_xContext = ctxt;
|
||||
UCBStreamHandler.m_ucbscheme = scheme;
|
||||
this.m_xSimpleFileAccess = xSFA;
|
||||
}
|
||||
|
@@ -29,7 +29,6 @@ public class EditorScriptContext implements XScriptContext
|
||||
{
|
||||
private XDesktop m_xDeskTop;
|
||||
private XComponentContext m_xComponentContext;
|
||||
private XDesktop m_xCtx;
|
||||
public EditorScriptContext( XComponentContext xmComponentContext,
|
||||
XDesktop xDesktop )
|
||||
{
|
||||
|
@@ -37,7 +37,6 @@ public class ScriptContext extends PropertySet implements XScriptContext
|
||||
public final static String HM_DESKTOP = "Desktop";
|
||||
public final static String HM_COMPONENT_CONTEXT = "ComponentContext";
|
||||
|
||||
private final static String DOC_REF = "SCRIPTING_DOC_REF";
|
||||
private final static String DOC_URI = "SCRIPTING_DOC_URI";
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user