Skip to content

Commit

Permalink
Fix package name checking thing
Browse files Browse the repository at this point in the history
  • Loading branch information
mkacct committed May 14, 2024
1 parent 9cb5073 commit 2b965eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/domain/javadata/ClassNodeAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public String getSimpleName() {
@Override
public String getPackageName() {
String name = this.getFullName();
String[] terms = name.split("\\.|\\$");
String[] terms = name.split("\\.");
if (terms.length == 1) {
return "";
}
Expand Down

0 comments on commit 2b965eb

Please sign in to comment.