Author: dsavage
Date: Thu Aug 20 16:59:29 2009
New Revision: 806253
URL: http://svn.apache.org/viewvc?rev=806253&view=rev
Log:
tidy up unused interface methods
Modified:
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java
Modified:
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java
URL:
http://svn.apache.org/viewvc/felix/trunk/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java?rev=806253&r1=806252&r2=806253&view=diff
==============================================================================
---
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java
(original)
+++
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/core/internal/model/eclipse/SigilBundle.java
Thu Aug 20 16:59:29 2009
@@ -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 );
Modified:
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java
URL:
http://svn.apache.org/viewvc/felix/trunk/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java?rev=806253&r1=806252&r2=806253&view=diff
==============================================================================
---
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java
(original)
+++
felix/trunk/sigil/common/core/src/org/apache/felix/sigil/model/eclipse/ISigilBundle.java
Thu Aug 20 16:59:29 2009
@@ -53,15 +53,6 @@
void setBundleInfo( IBundleModelElement bundle );
- void addLibraryPath( IPath path );
-
-
- void removeLibraryPath( IPath path );
-
-
- Set<IPath> getLibraryPaths();
-
-
void addSourcePath( IPath path );