File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
http-generator-core/src/main/java/io/avaje/http/generator/core Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ public static UType parse(String rawType) {
41
41
public static String typeDef (TypeMirror typeMirror ) {
42
42
if (typeMirror .getKind () == TypeKind .DECLARED ) {
43
43
DeclaredType declaredType = (DeclaredType ) typeMirror ;
44
-
45
44
return declaredType .asElement ().toString ();
46
45
} else {
47
46
return trimAnnotations (typeMirror .toString ());
@@ -50,7 +49,6 @@ public static String typeDef(TypeMirror typeMirror) {
50
49
51
50
/** Trim off annotations from the raw type if present. */
52
51
public static String trimAnnotations (String input ) {
53
-
54
52
input = COMMA_PATTERN .matcher (input ).replaceAll ("," );
55
53
56
54
return cutAnnotations (input );
@@ -63,7 +61,6 @@ private static String cutAnnotations(String input) {
63
61
}
64
62
65
63
final Matcher matcher = WHITE_SPACE_REGEX .matcher (input );
66
-
67
64
int currentIndex = 0 ;
68
65
if (matcher .find ()) {
69
66
currentIndex = matcher .start ();
You can’t perform that action at this time.
0 commit comments