Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Energy ADE
ADE Xjc
Commits
f25d7fe0
Commit
f25d7fe0
authored
Jan 21, 2018
by
Claus Nagel
Browse files
fixed NPE when not providing a binding file
parent
8aaa048a
Changes
1
Show whitespace changes
Inline
Side-by-side
src/main/java/org/citygml4j/ade_xjc/ADESchemaCompiler.java
View file @
f25d7fe0
...
@@ -141,7 +141,7 @@ public class ADESchemaCompiler {
...
@@ -141,7 +141,7 @@ public class ADESchemaCompiler {
if
(!
adeSchemaFile
.
isAbsolute
())
if
(!
adeSchemaFile
.
isAbsolute
())
adeSchemaFile
=
workDir
.
resolve
(
adeSchemaFile
);
adeSchemaFile
=
workDir
.
resolve
(
adeSchemaFile
);
if
(!
adeBindingFile
.
isAbsolute
())
if
(
adeBindingFile
!=
null
&&
!
adeBindingFile
.
isAbsolute
())
adeBindingFile
=
workDir
.
resolve
(
adeBindingFile
);
adeBindingFile
=
workDir
.
resolve
(
adeBindingFile
);
if
(!
outputFolder
.
isAbsolute
())
if
(!
outputFolder
.
isAbsolute
())
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment