NO-JIRA Add serialVersionUID and remove redundant casts

Adding serialVersionUID to WildcardConfiguration since it is
serializable. Without serialVersionUID  being specified a new one is
generated on each compilation which prevents object deserialization
between releases.
This commit is contained in:
sebthom 2020-01-31 10:23:56 +01:00 committed by Justin Bertram
parent bfd943a06c
commit 4bc5c6f2a8
1 changed files with 5 additions and 3 deletions

View File

@ -20,6 +20,8 @@ import java.io.Serializable;
public class WildcardConfiguration implements Serializable {
private static final long serialVersionUID = 1L;
static final char SINGLE_WORD = '*';
static final char ANY_WORDS = '#';
@ -58,9 +60,9 @@ public class WildcardConfiguration implements Serializable {
@Override
public int hashCode() {
int result = (routingEnabled ? 1 : 0);
result = 31 * result + (int) singleWord;
result = 31 * result + (int) anyWords;
result = 31 * result + (int) delimiter;
result = 31 * result + singleWord;
result = 31 * result + anyWords;
result = 31 * result + delimiter;
return result;
}