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 );