Skip to content

Commit

Permalink
Upgrades target platform to 4.4.0.CR1 (neon)
Browse files Browse the repository at this point in the history
* Fixes errors caused by compile changes
  • Loading branch information
Paul Richardson committed Oct 20, 2016
1 parent d7874dd commit 6350835
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ private void createMarker( IFile file,
UTIL.log(IStatus.ERROR, MED_VALIDATION_MSG + originalMessage);
}

Map<String, Comparable> attributes = new HashMap<String, Comparable>();
Map<String, Object> attributes = new HashMap<String, Object>();
attributes.put(IMarker.SEVERITY, severity);
attributes.put(IMarker.MESSAGE, message);
if(hasLegacyNames) attributes.put(HAS_LEGACY_NAMES, true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,7 @@ private void createMarker( IFile file,
assert (file != null) : "file is null"; //$NON-NLS-1$
assert ((message != null) && !message.isEmpty()) : "message is empty"; //$NON-NLS-1$

@SuppressWarnings("rawtypes")
Map<String, Comparable> attributes = new HashMap<String, Comparable>();
Map<String, Object> attributes = new HashMap<String, Object>();
attributes.put(IMarker.SEVERITY, severity);
attributes.put(IMarker.MESSAGE, message);

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<td.tpc.groupId>org.jboss.tools.integration-stack</td.tpc.groupId>
<td.tpc.artifactId>target-platform</td.tpc.artifactId>
<td.tpc.version>4.3.1.Final</td.tpc.version>
<td.tpc.version>4.4.0.CR1</td.tpc.version>
<td.tpc.type>target</td.tpc.type>
<td.tpc.classifier>base-ea</td.tpc.classifier>

Expand Down

0 comments on commit 6350835

Please sign in to comment.