Skip to content

Commit

Permalink
eclipse-ee4j#1701: xjc with WSDL emits erroneous warning
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed May 31, 2023
1 parent 2bbf269 commit 5a10fab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Expand Up @@ -78,6 +78,9 @@
<listitem><para>
<link xlink:href="https://github.com/eclipse-ee4j/jaxb-ri/issues/1682">#1682</link>: Non-deterministic definition of default namespace @XmlSchema(namespace=...) in package-info.java
</para></listitem>
<listitem><para>
<link xlink:href="https://github.com/eclipse-ee4j/jaxb-ri/issues/1701">#1701</link>: xjc with WSDL emits erroneous warning
</para></listitem>
</itemizedlist>
</para></listitem>
</itemizedlist>
Expand Down
Expand Up @@ -181,7 +181,7 @@ private Model load() {
* should abort.
*/
private boolean sanityCheck() {
if( opt.getSchemaLanguage()!=Language.XMLSCHEMA ) {
if( opt.getSchemaLanguage() == Language.XMLSCHEMA ) {
Language guess = opt.guessSchemaLanguage();

String[] msg = null;
Expand Down

0 comments on commit 5a10fab

Please sign in to comment.