Skip to content

Commit 4007496

Browse files
committed
Polishing
1 parent 64a8dfb commit 4007496

File tree

4 files changed

+62
-123
lines changed

4 files changed

+62
-123
lines changed

spring-aop/src/main/java/org/springframework/aop/aspectj/MethodInvocationProceedingJoinPoint.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2015 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.
@@ -243,6 +243,7 @@ public String toString() {
243243

244244
private String toString(boolean includeModifier, boolean includeReturnTypeAndArgs,
245245
boolean useLongReturnAndArgumentTypeName, boolean useLongTypeName) {
246+
246247
StringBuilder sb = new StringBuilder();
247248
if (includeModifier) {
248249
sb.append(Modifier.toString(getModifiers()));
@@ -262,8 +263,9 @@ private String toString(boolean includeModifier, boolean includeReturnTypeAndArg
262263
return sb.toString();
263264
}
264265

265-
private void appendTypes(StringBuilder sb, Class<?>[] types,
266-
boolean includeArgs, boolean useLongReturnAndArgumentTypeName) {
266+
private void appendTypes(StringBuilder sb, Class<?>[] types, boolean includeArgs,
267+
boolean useLongReturnAndArgumentTypeName) {
268+
267269
if (includeArgs) {
268270
for (int size = types.length, i = 0; i < size; i++) {
269271
appendType(sb, types[i], useLongReturnAndArgumentTypeName);

0 commit comments

Comments
 (0)