Skip to content

Commit

Permalink
Fix package decl
Browse files Browse the repository at this point in the history
  • Loading branch information
bowbahdoe committed Jan 23, 2022
1 parent 2467c8e commit e4e698f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public boolean process(
};


var packageDecl = "package " + enclosingElement + ";\n\n";
var packageDecl = packageName == null ? "" : "package " + packageName + ";\n\n";


String classDeclStart;
Expand Down

0 comments on commit e4e698f

Please sign in to comment.