Skip to content

Commit

Permalink
Using Java 22; upgrading JUnit; small correction to the placement of …
Browse files Browse the repository at this point in the history
…editor fold comment.
  • Loading branch information
trishagee committed Jul 8, 2024
1 parent b383e98 commit 6abaac9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion java-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.1</version>
<version>5.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ private void replaceMapForEachWithEntrySetLoop(Map<String, Integer> map, Map<Str
map.forEach(otherMap::putIfAbsent);
}

//<editor-fold desc="Helper methods">

private List<String> replaceWithCollectAndMap() {
List<String> result = getStrings();

Expand Down Expand Up @@ -413,6 +411,7 @@ public void simplificationsForEntrySet(Map<Integer, String> map) {
}


//<editor-fold desc="Helper methods">
@NotNull
private ArrayList<String> getStrings() {
return new ArrayList<>();
Expand Down Expand Up @@ -447,8 +446,8 @@ public String[] getLoadNames() {
return loadNames;
}
}

//</editor-fold>

}


Expand Down

0 comments on commit 6abaac9

Please sign in to comment.