Skip to content

Commit

Permalink
update of dependency jobj-reflect to new major version 2
Browse files Browse the repository at this point in the history
- update of dependency jobj-copy to new minor version 4.1
  • Loading branch information
astrapi69 committed Sep 22, 2023
1 parent 360a373 commit c488980
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
Version 10.1-SNAPSHOT
-------------

CHANGED:

- update of dependency jobj-reflect to new major version 2
- update of dependency jobj-copy to new minor version 4.1

Version 10
-------------
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ spotlessGradlePluginVersion=6.21.0
# dependencies versions #
#########################
jobjCoreVersion=8
jobjReflectVersion=1
jobjReflectVersion=2
sillyCollectionVersion=27
vintageTimeVersion=6
sillyMathVersion=2.2
jobjCopyVersion=4
jobjCopyVersion=4.1
##############################
# test dependencies versions #
##############################
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
implementation("io.github.astrapi69:jobj-core:$jobjCoreVersion")
implementation("io.github.astrapi69:jobj-copy:$jobjCopyVersion")
implementation("io.github.astrapi69:jobj-reflect:$jobjReflectVersion")
implementation("io.github.astrapi69:jobj-copy:$jobjCopyVersion")
implementation("io.github.astrapi69:silly-collection:$sillyCollectionVersion")
implementation("io.github.astrapi69:silly-math:$sillyMathVersion")
implementation("io.github.astrapi69:vintage-time:$vintageTimeVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public static LocalTime randomLocalTime()
*/
public static ZoneId randomZoneId()
{
List<String> availableZoneIds = new ArrayList(ZoneId.getAvailableZoneIds());
List<String> availableZoneIds = new ArrayList<>(ZoneId.getAvailableZoneIds());
return ZoneId.of(availableZoneIds.get(RandomIntFactory.randomInt(availableZoneIds.size())));
}
}

0 comments on commit c488980

Please sign in to comment.