formatting and comments

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1283 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-06-15 14:02:19 +00:00
parent e261caa228
commit 5333f89345
3 changed files with 2 additions and 5 deletions

View File

@ -66,7 +66,6 @@ public class EclipseProjectPath {
* TODO: do we really need this? Why shouldn't source files come from a
* "normal" class loader like any other resource?
*/
public static final Atom SOURCE = Atom.findOrCreateUnicodeAtom("Source");
public static final ClassLoaderReference SOURCE_REF = new ClassLoaderReference(EclipseProjectPath.SOURCE, ClassLoaderReference.Java);

View File

@ -23,8 +23,6 @@ import com.ibm.wala.util.warnings.WarningSet;
public abstract class CallStringContextSelector implements ContextSelector {
private static final ContextKey CALL_STRING = new ContextKey() {
@Override
public String toString() {
@ -187,7 +185,7 @@ public abstract class CallStringContextSelector implements ContextSelector {
return new CallStringContextPair(cs, baseContext);
}
}
public boolean mayUnderstand(CGNode caller, CallSiteReference site, IMethod targetMethod, InstanceKey instance) {
return base.mayUnderstand(caller, site, targetMethod, instance);
}

View File

@ -78,7 +78,7 @@ public class ClassLoaderReference {
}
/**
* @return the name of this class loader
* @return the name of the language this class loader belongs to
*/
public Atom getLanguage() {
return language;