@ -171,7 +171,7 @@ public class TypeUtils {
@@ -171,7 +171,7 @@ public class TypeUtils {
int rparen = s . indexOf ( ')' , lparen ) ;
String returnType = s . substring ( 0 , space ) ;
String methodName = s . substring ( space + 1 , lparen ) ;
StringBuff er sb = new StringBuff er ( ) ;
StringBuild er sb = new StringBuild er ( ) ;
sb . append ( '(' ) ;
for ( Iterator it = parseTypes ( s , lparen + 1 , rparen ) . iterator ( ) ; it . hasNext ( ) ; ) {
sb . append ( it . next ( ) ) ;
@ -195,7 +195,7 @@ public class TypeUtils {
@@ -195,7 +195,7 @@ public class TypeUtils {
}
public static Signature parseConstructor ( Type [ ] types ) {
StringBuff er sb = new StringBuff er ( ) ;
StringBuild er sb = new StringBuild er ( ) ;
sb . append ( "(" ) ;
for ( int i = 0 ; i < types . length ; i + + ) {
sb . append ( types [ i ] . getDescriptor ( ) ) ;
@ -233,7 +233,7 @@ public class TypeUtils {
@@ -233,7 +233,7 @@ public class TypeUtils {
} else if ( type . indexOf ( '.' ) < 0 ) {
return map ( "java.lang." + type ) ;
} else {
StringBuff er sb = new StringBuff er ( ) ;
StringBuild er sb = new StringBuild er ( ) ;
int index = 0 ;
while ( ( index = type . indexOf ( "[]" , index ) + 1 ) > 0 ) {
sb . append ( '[' ) ;
@ -402,7 +402,7 @@ public class TypeUtils {
@@ -402,7 +402,7 @@ public class TypeUtils {
}
public static String escapeType ( String s ) {
StringBuff er sb = new StringBuff er ( ) ;
StringBuild er sb = new StringBuild er ( ) ;
for ( int i = 0 , len = s . length ( ) ; i < len ; i + + ) {
char c = s . charAt ( i ) ;
switch ( c ) {