Skip to content

Commit

Permalink
Add TEMPLATE_INTERNAL_IMPORTS imports
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwannheden committed Aug 15, 2023
1 parent aea2a8a commit 5ad13ba
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,10 @@ protected void contextFreeTemplate(Cursor cursor, J j, StringBuilder before, Str
before.append("var o : Object = ");
after.append(";");
after.append("\n}");

before.insert(0, TEMPLATE_INTERNAL_IMPORTS);
for (String anImport : imports) {
before.insert(0, anImport);
}
}
}

0 comments on commit 5ad13ba

Please sign in to comment.