Skip to content

Commit

Permalink
fix last test
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanLindel committed Jun 23, 2014
1 parent 30b64b0 commit 6cb7399
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/org/sdmlib/models/classes/logic/GenClass.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ public GenClass generate(String rootDir, String helpersDir)
for (String key : array)
{
LocalVarTableEntry localVarTableEntry = localVarTable.get(key);
if(localVarTableEntry == null){
continue;
}
String type = localVarTableEntry.getType();
ClazzSet classes = this.getModel().getClassModel().getClasses();
for (Clazz clazz : classes)
Expand Down

0 comments on commit 6cb7399

Please sign in to comment.