Skip to content

Commit 2e602cf

Browse files
committed
Add type vitnesses.
1 parent 9832c0d commit 2e602cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

byte-buddy-dep/src/main/java/net/bytebuddy/utility/AsmClassReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public String getSuperClassInternalName() {
280280
*/
281281
public List<String> getInterfaceInternalNames() {
282282
String[] value = classReader.getInterfaces();
283-
return value == null ? Collections.emptyList() : Arrays.asList(value);
283+
return value == null ? Collections.<String>emptyList() : Arrays.asList(value);
284284
}
285285

286286
/**
@@ -370,7 +370,7 @@ public String getSuperClassInternalName() {
370370
*/
371371
public List<String> getInterfaceInternalNames() {
372372
String[] value = DISPATCHER.getInterfaces(classReader);
373-
return value == null ? Collections.emptyList() : Arrays.asList(value);
373+
return value == null ? Collections.<String>emptyList() : Arrays.asList(value);
374374
}
375375

376376
/**

0 commit comments

Comments
 (0)