Skip to content

Commit 779deb0

Browse files
committed
Cleanup of duplicate semicolons
Issue: SPR-15654
1 parent 7dd8dc6 commit 779deb0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

spring-context/src/test/java/org/springframework/aop/aspectj/AroundAdviceBindingTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -74,19 +74,19 @@ public void testOneIntArg() {
7474
@Test
7575
public void testOneObjectArgBoundToTarget() {
7676
testBeanProxy.getAge();
77-
verify(mockCollaborator).oneObjectArg(this.testBeanTarget);;
77+
verify(mockCollaborator).oneObjectArg(this.testBeanTarget);
7878
}
7979

8080
@Test
8181
public void testOneIntAndOneObjectArgs() {
8282
testBeanProxy.setAge(5);
83-
verify(mockCollaborator).oneIntAndOneObject(5, this.testBeanProxy);;
83+
verify(mockCollaborator).oneIntAndOneObject(5, this.testBeanProxy);
8484
}
8585

8686
@Test
8787
public void testJustJoinPoint() {
8888
testBeanProxy.getAge();
89-
verify(mockCollaborator).justJoinPoint("getAge");;
89+
verify(mockCollaborator).justJoinPoint("getAge");
9090
}
9191

9292
}

spring-tx/src/main/java/org/springframework/transaction/support/TransactionSynchronizationManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,8 +470,8 @@ public static boolean isActualTransactionActive() {
470470
public static void clear() {
471471
synchronizations.remove();
472472
currentTransactionName.remove();
473-
currentTransactionReadOnly.remove();;
474-
currentTransactionIsolationLevel.remove();;
473+
currentTransactionReadOnly.remove();
474+
currentTransactionIsolationLevel.remove();
475475
actualTransactionActive.remove();
476476
}
477477

spring-web/src/test/java/org/springframework/web/context/request/async/WebAsyncManagerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public void startDeferredResultProcessingPostProcessException() throws Exception
328328
Exception exception = new Exception();
329329

330330
DeferredResultProcessingInterceptor interceptor = mock(DeferredResultProcessingInterceptor.class);
331-
willThrow(exception).given(interceptor).postProcess(this.asyncWebRequest, deferredResult, 25);;
331+
willThrow(exception).given(interceptor).postProcess(this.asyncWebRequest, deferredResult, 25);
332332

333333
setupDefaultAsyncScenario();
334334

spring-webmvc/src/main/java/org/springframework/web/servlet/view/document/AbstractXlsView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected final void renderMergedOutputModel(
7070
response.setContentType(getContentType());
7171

7272
// Flush byte array to servlet output stream.
73-
renderWorkbook(workbook, response);;
73+
renderWorkbook(workbook, response);
7474
}
7575

7676

0 commit comments

Comments
 (0)