File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed
src/main/java/org/apache/ibatis/reflection Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .apache .ibatis .reflection ;
17
17
18
- import java .lang .reflect .*;
19
- import java .util .*;
18
+ import java .lang .reflect .Array ;
19
+ import java .lang .reflect .Constructor ;
20
+ import java .lang .reflect .Field ;
21
+ import java .lang .reflect .GenericArrayType ;
22
+ import java .lang .reflect .Method ;
23
+ import java .lang .reflect .Modifier ;
24
+ import java .lang .reflect .ParameterizedType ;
25
+ import java .lang .reflect .ReflectPermission ;
26
+ import java .lang .reflect .Type ;
27
+ import java .util .ArrayList ;
28
+ import java .util .Arrays ;
29
+ import java .util .Collection ;
30
+ import java .util .HashMap ;
31
+ import java .util .List ;
32
+ import java .util .Locale ;
33
+ import java .util .Map ;
20
34
import java .util .Map .Entry ;
21
35
22
36
import org .apache .ibatis .reflection .invoker .GetFieldInvoker ;
@@ -299,7 +313,7 @@ private String getSignature(Method method) {
299
313
sb .append (method .getName ());
300
314
Class <?>[] parameters = method .getParameterTypes ();
301
315
for (int i = 0 ; i < parameters .length ; i ++) {
302
- sb .append (i == 0 ? ":" : "," ).append (parameters [i ].getName ());
316
+ sb .append (i == 0 ? ':' : ',' ).append (parameters [i ].getName ());
303
317
}
304
318
return sb .toString ();
305
319
}
Original file line number Diff line number Diff line change 1
1
/**
2
- * Copyright 2009-2015 the original author or authors.
2
+ * Copyright 2009-2019 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.
You can’t perform that action at this time.
0 commit comments