diff --git a/core/java/src/net/i2p/stat/RateStat.java b/core/java/src/net/i2p/stat/RateStat.java index c19677a1cb164d59573c0f44e93e996e21f4b14e..a9fe94b8035f12716b88f7053fafaf5ef1544682 100644 --- a/core/java/src/net/i2p/stat/RateStat.java +++ b/core/java/src/net/i2p/stat/RateStat.java @@ -27,7 +27,8 @@ public class RateStat { if (periods.length == 0) throw new IllegalArgumentException(); - long [] periodsCopy = copyOf(periods, periods.length); + long [] periodsCopy = new long[periods.length]; + System.arraycopy(periods, 0, periodsCopy, 0, periods.length); sort(periodsCopy); _rates = new Rate[periodsCopy.length];