Remove redundant semicolons

Closes gh-10422
This commit is contained in:
dreis2211
2017-09-25 23:46:30 +02:00
committed by Stephane Nicoll
parent bbee943972
commit f3472beed8
24 changed files with 26 additions and 26 deletions

View File

@@ -74,6 +74,6 @@ public enum CacheType {
/**
* No caching.
*/
NONE;
NONE
}

View File

@@ -766,7 +766,7 @@ public class KafkaProperties {
/**
* Invokes the endpoint with a batch of ConsumerRecords.
*/
BATCH;
BATCH
}

View File

@@ -49,6 +49,6 @@ public enum StoreType {
/**
* No session data-store.
*/
NONE;
NONE
}

View File

@@ -122,7 +122,7 @@ public class HttpMessageConvertersTests {
}
}
return converters;
};
}
};
List<Class<?>> converterClasses = new ArrayList<>();
for (HttpMessageConverter<?> converter : converters) {
@@ -152,7 +152,7 @@ public class HttpMessageConvertersTests {
}
}
return converters;
};
}
};
List<Class<?>> converterClasses = new ArrayList<>();
for (HttpMessageConverter<?> converter : extractFormPartConverters(

View File

@@ -185,7 +185,7 @@ public class BasicErrorControllerDirectMockMvcTests {
@Pointcut("within(@org.springframework.stereotype.Controller *)")
private void controllerPointCut() {
};
}
@Around("controllerPointCut()")
public Object mvcAdvice(ProceedingJoinPoint pjp) throws Throwable {