Skip to content

Commit

Permalink
Merge pull request #77 from mkacct/fix-package-name-thing
Browse files Browse the repository at this point in the history
Fix package name checking thing
  • Loading branch information
rhit-shirakrk authored May 14, 2024
2 parents 9cb5073 + 61cb641 commit 5379fd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>rhit.csse.csse375</groupId>
<artifactId>LinterProject</artifactId>
<name>Linter</name>
<version>0.1</version>
<version>0.1.1</version>
<repositories>
<repository>
<id>central</id>
Expand Down
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 5379fd2

Please sign in to comment.