diff options
author | Tomasz Zarna | 2013-06-18 21:20:28 +0000 |
---|---|---|
committer | Tomasz Zarna | 2013-06-18 21:20:28 +0000 |
commit | fa0c2128f09e82da74cbc19e01dbd47d8135bf5c (patch) | |
tree | e99b6d0905c18d2f798ca436382ec761e3b521ba | |
parent | a7be3def4f56a4900b7b0b72f709127aa5d7b281 (diff) | |
download | org.eclipse.mylyn.tasks-fa0c2128f09e82da74cbc19e01dbd47d8135bf5c.tar.gz org.eclipse.mylyn.tasks-fa0c2128f09e82da74cbc19e01dbd47d8135bf5c.tar.xz org.eclipse.mylyn.tasks-fa0c2128f09e82da74cbc19e01dbd47d8135bf5c.zip |
String is incompatible with expected arg type Integer in containsValue
Change-Id: If09540323587aed927719cf09117d4730053e5cb
-rw-r--r-- | org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxConfigurationContentHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxConfigurationContentHandler.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxConfigurationContentHandler.java index 5c5eafd6b..fff5db797 100644 --- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxConfigurationContentHandler.java +++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/SaxConfigurationContentHandler.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2004, 2010 Tasktop Technologies and others. + * Copyright (c) 2004, 2013 Tasktop Technologies and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -461,7 +461,7 @@ public class SaxConfigurationContentHandler extends DefaultHandler { state = state & ~IN_FLAG_TYPES; } else if (localName.equals(ELEMENT_FLAG_TYPE)) { if (currentId != -1) { - if (about != null && !flagIds.containsValue(about)) { + if (about != null && !flagIds.containsValue(currentId)) { flagIds.put(about, currentId); } BugzillaFlag newFlag = new BugzillaFlag(currentName, currentDescription, currentType, |