Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Changes in 3.9.3:
- Switch from the legacy Date API to Java's new Time API
- Time is now specified in 24-hour format in XML export
- Enable exporting very long lines as .txt
- Allow plugins to merge multiple ping results

Changes in 3.9.2:
- Linux: specify Java 17 as minimum required version in .deb and .rpm packages
Expand Down
2 changes: 1 addition & 1 deletion src/net/azib/ipscan/core/net/PingResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public boolean isTimeoutAdaptationAllowed() {
return timeoutAdaptationAllowed;
}

PingResult merge(PingResult result) {
public PingResult merge(PingResult result) {
this.packetCount += result.packetCount;
this.replyCount += result.replyCount;
return this;
Expand Down
Loading