Skip to content

Commit

Permalink
fix empty name
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Dec 7, 2024
1 parent 08a74da commit c120a98
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public FullyQualifiedMemberNameAndDesc(Type owner, String name, Type desc) {

public static FullyQualifiedMemberNameAndDesc of(String value) {
String[] vals = value.split(";", 3);
if (vals.length == 2 && vals[1].isEmpty()) vals = new String[] { vals[0] };
Type owner;
if (vals.length == 1) {
if (value.startsWith("L") && value.endsWith(";")) {
Expand Down

0 comments on commit c120a98

Please sign in to comment.