File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2021 the original author or authors.
2
+ * Copyright 2002-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -102,12 +102,12 @@ public boolean equals(Object obj) {
102
102
return false ;
103
103
}
104
104
ClientAuthenticationMethod that = (ClientAuthenticationMethod ) obj ;
105
- return this . getValue ().equalsIgnoreCase (that .getValue ());
105
+ return getValue ().equals (that .getValue ());
106
106
}
107
107
108
108
@ Override
109
109
public int hashCode () {
110
- return this . getValue ().hashCode ();
110
+ return getValue ().hashCode ();
111
111
}
112
112
113
113
}
You can’t perform that action at this time.
0 commit comments