Skip to content
Snippets Groups Projects
Commit 973fedad authored by Damian Minkov's avatar Damian Minkov
Browse files

Adds missing hashcode method reported by Lyubomir Marinov.

parent dbef6f3b
No related branches found
No related tags found
No related merge requests found
...@@ -283,5 +283,12 @@ public boolean equals(Object o) ...@@ -283,5 +283,12 @@ public boolean equals(Object o)
return true; return true;
} }
@Override
public int hashCode()
{
return (uri != null ? uri.hashCode() : 0)
+ (isPlayback ? 1 : 0);
}
} }
} }
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