Skip to content
Snippets Groups Projects
Commit 97978257 authored by gpawel's avatar gpawel
Browse files

minor: getting rid of warning

SVN: 23019
parent 57fd28ea
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,8 @@ public class LabeledItem<T> ...@@ -71,7 +71,8 @@ public class LabeledItem<T>
return false; return false;
if (getClass() != obj.getClass()) if (getClass() != obj.getClass())
return false; return false;
LabeledItem other = (LabeledItem) obj; @SuppressWarnings("unchecked")
LabeledItem<T> other = (LabeledItem<T>) obj;
if (item == null) if (item == null)
{ {
if (other.item != null) if (other.item != null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment