]
Paul Richardson resolved TEIIDDES-2020.
---------------------------------------
Resolution: Done
RestWebArchiveBuilderImpl.createResourceJavaClasses() method uses
wrong server version check
--------------------------------------------------------------------------------------------
Key: TEIIDDES-2020
URL:
https://issues.jboss.org/browse/TEIIDDES-2020
Project: Teiid Designer
Issue Type: Bug
Components: Import/Export
Affects Versions: 8.3, 8.3.1
Reporter: Barry LaFond
Assignee: Paul Richardson
Fix For: 8.3.2, 8.4
Noticed that the following server version check is backwards:
boolean greaterThan82 = new
TeiidServerVersion("8.2.0").isGreaterThan(version); //$NON-NLS-1$
Should be:
boolean greaterThan82 = version.isGreaterThan(new TeiidServerVersion("8.2.0"));
//$NON-NLS-1$
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: