not all languages capitalize class loader ref names

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3547 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2009-04-30 02:02:47 +00:00
parent 43cf48ae67
commit 64fc356f49
1 changed files with 2 additions and 0 deletions

View File

@ -281,11 +281,13 @@ public class AnalysisScope {
if (name.length() == 0) {
throw new IllegalArgumentException("empty atom is not a legal class loader name");
}
/*
if (Assertions.verifyAssertions) {
if (name.getVal(0) > 'Z') {
Assertions._assert(name.getVal(0) <= 'Z', "Classloader name improperly capitalised? (" + name + ")");
}
}
*/
return loadersByName.get(name);
}