DATACMNS-1177 - Polishing.
Removed redundant static keywords on inner enums. Original pull request: #249.
This commit is contained in:
committed by
Oliver Gierke
parent
4de44b4ded
commit
67adc4e935
@@ -567,7 +567,7 @@ public abstract class QueryExecutionConverters {
|
||||
* @author Oliver Gierke
|
||||
* @since 1.12
|
||||
*/
|
||||
private static enum GuavaOptionalUnwrapper implements Converter<Object, Object> {
|
||||
private enum GuavaOptionalUnwrapper implements Converter<Object, Object> {
|
||||
|
||||
INSTANCE;
|
||||
|
||||
@@ -587,7 +587,7 @@ public abstract class QueryExecutionConverters {
|
||||
* @author Oliver Gierke
|
||||
* @since 1.12
|
||||
*/
|
||||
private static enum Jdk8OptionalUnwrapper implements Converter<Object, Object> {
|
||||
private enum Jdk8OptionalUnwrapper implements Converter<Object, Object> {
|
||||
|
||||
INSTANCE;
|
||||
|
||||
@@ -608,7 +608,7 @@ public abstract class QueryExecutionConverters {
|
||||
* @author Mark Paluch
|
||||
* @since 1.12
|
||||
*/
|
||||
private static enum ScalOptionUnwrapper implements Converter<Object, Object> {
|
||||
private enum ScalOptionUnwrapper implements Converter<Object, Object> {
|
||||
|
||||
INSTANCE;
|
||||
|
||||
@@ -640,7 +640,7 @@ public abstract class QueryExecutionConverters {
|
||||
* @author Oliver Gierke
|
||||
* @since 1.13
|
||||
*/
|
||||
private static enum JavaslangOptionUnwrapper implements Converter<Object, Object> {
|
||||
private enum JavaslangOptionUnwrapper implements Converter<Object, Object> {
|
||||
|
||||
INSTANCE;
|
||||
|
||||
@@ -681,7 +681,7 @@ public abstract class QueryExecutionConverters {
|
||||
* @author Oliver Gierke
|
||||
* @since 2.0
|
||||
*/
|
||||
private static enum VavrOptionUnwrapper implements Converter<Object, Object> {
|
||||
private enum VavrOptionUnwrapper implements Converter<Object, Object> {
|
||||
|
||||
INSTANCE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user