-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
harden codegen: ensure that users can start with a blank page... (#247)
* harden codegen: ensure that users can start with a blank page... ... without any compiler errors or warnings in the generated domain classes * fmt
- Loading branch information
1 parent
82cbc42
commit 9f16c9b
Showing
21 changed files
with
452 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
test-schemas-domain-classes/src/main/scala/testdomains/empty/EdgeTypes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package testdomains.empty; | ||
|
||
import java.util.HashSet; | ||
import java.util.Set; | ||
|
||
public class EdgeTypes { | ||
|
||
|
||
public static Set<String> ALL = new HashSet<String>() {{ | ||
|
||
}}; | ||
|
||
} |
Oops, something went wrong.