commit | ae7863a29173af880eb6878d7cb0b3695a0f5346 | [log] [tgz] |
---|---|---|
author | David Morgan Spencer Savage <dsavage@apache.org> | Thu Aug 20 16:59:29 2009 +0000 |
committer | David Morgan Spencer Savage <dsavage@apache.org> | Thu Aug 20 16:59:29 2009 +0000 |
tree | 513e20c5efb7c807c769316b4981205313f6791c | |
parent | 9d02075ef5b94614fd10e336a475526aef5d348c [diff] |
tidy up unused interface methods git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@806253 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java b/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java index d39bc8b..953d7fd 100644 --- a/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java +++ b/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java
@@ -56,7 +56,6 @@ private IBundleModelElement bundle; private Set<IPath> sourcePaths; - private Set<IPath> libraryPaths; private Set<String> classpath; private Set<String> packages; private Set<String> dlPackages; @@ -72,7 +71,6 @@ { super( "Sigil Bundle" ); sourcePaths = new HashSet<IPath>(); - libraryPaths = new HashSet<IPath>(); classpath = new HashSet<String>(); packages = new HashSet<String>(); dlPackages = new HashSet<String>(); @@ -216,24 +214,6 @@ } - public void addLibraryPath( IPath path ) - { - libraryPaths.add( path ); - } - - - public void removeLibraryPath( IPath path ) - { - libraryPaths.remove( path ); - } - - - public Set<IPath> getLibraryPaths() - { - return libraryPaths; - } - - public void addSourcePath( IPath path ) { sourcePaths.add( path );
diff --git a/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java b/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java index 9a76918..0e7424f 100644 --- a/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java +++ b/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java
@@ -53,15 +53,6 @@ void setBundleInfo( IBundleModelElement bundle ); - void addLibraryPath( IPath path ); - - - void removeLibraryPath( IPath path ); - - - Set<IPath> getLibraryPaths(); - - void addSourcePath( IPath path );