Skip to content

Commit

Permalink
ROO-2337: Post 1.1.3.RELEASE code refactor and clean up - removed unn…
Browse files Browse the repository at this point in the history
…ecessary semi-colon in UndoEvent and improved conditional expression in ProjectMetadata
  • Loading branch information
James Tyrrell committed May 1, 2011
1 parent 3c1eeda commit 316fb12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public UndoOperation getOperation() {
public enum UndoOperation {
UNDO,
RESET,
FLUSH;
FLUSH
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ public boolean isGwtEnabled() {
if (!gwtEnabled) {
String gwtXmlPath = pathResolver.getIdentifier(Path.SRC_MAIN_JAVA, StringUtils.replace(topLevelPackage.getFullyQualifiedPackageName(), ".", File.separator) + "/ApplicationScaffold.gwt.xml");
File file = new File(gwtXmlPath);
gwtEnabled |= file.exists();
gwtEnabled = file.exists();
}

return gwtEnabled;
Expand Down

0 comments on commit 316fb12

Please sign in to comment.