reduce visibility of constructor in abstract class

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3193 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
msridhar1 2009-01-29 16:42:58 +00:00
parent f8d02b4541
commit 29f34d8fc9
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public abstract class Entrypoint implements BytecodeConstants {
}
}
public Entrypoint(MethodReference method, IClassHierarchy cha) {
protected Entrypoint(MethodReference method, IClassHierarchy cha) {
if (cha == null) {
throw new IllegalArgumentException("cha is null");
}