delete IClass.isStatic()

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2649 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2008-03-03 01:48:19 +00:00
parent 04e2e78de9
commit 79bbb026bc
5 changed files with 0 additions and 20 deletions

View File

@ -320,8 +320,4 @@ public class ArrayClass implements IClass, Constants {
return true;
}
public boolean isStatic() {
return false;
}
}

View File

@ -53,10 +53,6 @@ public interface IClass extends IClassHierarchyDweller {
*/
boolean isPublic();
/**
* @return true iff this class is static
*/
boolean isStatic();
/**
* Return the integer that encodes the class's modifiers,

View File

@ -805,11 +805,6 @@ public final class ShrikeClass implements IClass {
return result;
}
public boolean isStatic() {
boolean result = ((modifiers & Constants.ACC_STATIC) != 0);
return result;
}
public Collection<Annotation> getRuntimeInvisibleAnnotations() throws InvalidClassFileException, UnimplementedException {
RuntimeInvisibleAnnotationsReader r = getRuntimeInvisibleAnnotationsReader();
if (r != null) {

View File

@ -229,8 +229,4 @@ public class FakeRootClass extends SyntheticClass {
public boolean isPublic() {
return false;
}
public boolean isStatic() {
return false;
}
}

View File

@ -256,7 +256,4 @@ public class BypassSyntheticClass extends SyntheticClass {
return realType.isPublic();
}
public boolean isStatic() {
return realType.isStatic();
}
}