Skip to content

Commit

Permalink
Add default constructor to EolStaticAnalyser
Browse files Browse the repository at this point in the history
  • Loading branch information
Panagiotis Kourouklidis committed Feb 7, 2024
1 parent 71764d8 commit 456e0f4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ public static void main(String[] args) throws Exception {
}


public EolStaticAnalyser() {
context.modelFactory = new StaticModelFactory();
}

public EolStaticAnalyser(IModelFactory modelFactory) {
context.modelFactory = modelFactory;
}
Expand Down

0 comments on commit 456e0f4

Please sign in to comment.