File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
byte-buddy-dep/src/main/java/net/bytebuddy/utility Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments