We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed9284e + a5d28f5 commit 3ff7e9dCopy full SHA for 3ff7e9d
2 files changed
CHANGELOG
@@ -7,6 +7,7 @@ Changes in 3.9.3:
7
- Switch from the legacy Date API to Java's new Time API
8
- Time is now specified in 24-hour format in XML export
9
- Enable exporting very long lines as .txt
10
+- Allow plugins to merge multiple ping results
11
12
Changes in 3.9.2:
13
- Linux: specify Java 17 as minimum required version in .deb and .rpm packages
src/net/azib/ipscan/core/net/PingResult.java
@@ -87,7 +87,7 @@ public boolean isTimeoutAdaptationAllowed() {
87
return timeoutAdaptationAllowed;
88
}
89
90
- PingResult merge(PingResult result) {
+ public PingResult merge(PingResult result) {
91
this.packetCount += result.packetCount;
92
this.replyCount += result.replyCount;
93
return this;
0 commit comments