made constructor protected (was private)

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1181 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
schandra_sf 2007-05-27 19:36:56 +00:00
parent 8e741a8149
commit 435ef30fd6
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public class BasicTheory extends AbstractTheory {
private final IVocabulary vocab;
private final Collection<? extends IFormula> sentences;
private BasicTheory(IVocabulary vocab, Collection<? extends IFormula> sentences) {
protected BasicTheory(IVocabulary vocab, Collection<? extends IFormula> sentences) {
this.vocab = vocab;
this.sentences = sentences;
}