File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/github/markusbernhardt/xmldoclet Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class TypeUtils {
23
23
*
24
24
* This way, we invert that order for a conventional representation of a method signature.
25
25
*/
26
- private static final Pattern methodSignatureWithReturnTypeAtRightSide = Pattern .compile ("^(\\ (.*\\ ))(.*)" );
26
+ private static final Pattern METHOD_SIGNATURE_WITH_RETURN_TYPE_AT_RIGHT_SIDE = Pattern .compile ("^(\\ (.*\\ ))(.*)" );
27
27
28
28
public TypeUtils (final Types types , final Elements elements ) {
29
29
this .types = types ;
@@ -126,7 +126,7 @@ static String getQualifiedName(final Element element) {
126
126
127
127
static String getQualifiedName (final TypeMirror typeMirror ) {
128
128
final String qualified = typeMirror .toString ();
129
- final var matcher = methodSignatureWithReturnTypeAtRightSide .matcher (qualified );
129
+ final var matcher = METHOD_SIGNATURE_WITH_RETURN_TYPE_AT_RIGHT_SIDE .matcher (qualified );
130
130
131
131
return matcher .matches () ? matcher .group (2 ) + " " + matcher .group (1 ) : qualified ;
132
132
}
You can’t perform that action at this time.
0 commit comments