We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 827b2c7 + 10328d0 commit 46c8af5Copy full SHA for 46c8af5
ebean-agent/src/main/java/io/ebean/enhance/common/VisitUtil.java
@@ -9,11 +9,7 @@ public final class VisitUtil implements Opcodes {
9
* Append the interfaceType to the existing class signature.
10
*/
11
public static String signatureAppend(String signature, String interfaceType) {
12
- if (signature == null) {
13
- return 'L' + interfaceType + ';';
14
- } else {
15
- return signature + 'L' + interfaceType + ';';
16
- }
+ return signature == null ? null : signature + 'L' + interfaceType + ';';
17
}
18
19
/**
0 commit comments