Community
Participate
Working Groups
The generated Main class uses "src-gen/" as output location. I created a situation where this lead to an NPE, see bug#342663. Changing the output location to "./src-gen/" avoids this and should be equivalent. fileAccess.setOutputPath("./src-gen/");
Maybe it would make sense to verify if changing JavaIoFileSystemAccess#createFolder() to simply use File#mkdirs() instead of having it recursively call File#mkdir() solves the problem. I.e. protected void createFolder(File parent) { if(!parent.exists()) { parent.mkdirs(); } } or even just: protected void createFolder(File parent) { parent.mkdirs(); } instead of: protected void createFolder(File parent) { if(!parent.exists()) { createFolder(parent.getParentFile()); parent.mkdir(); } }
see also bug 342663
Preliminary scheduled for 2.0RC1
pushed
Closing all bugs that were set to RESOLVED before Neon.0