Browse Source

package protect the MovingAverage class instead of deprecating it

Stephen Gold 7 years ago
parent
commit
247d5d9324
1 changed files with 1 additions and 2 deletions
  1. 1 2
      jme3-examples/src/main/java/jme3test/network/MovingAverage.java

+ 1 - 2
jme3-examples/src/main/java/jme3test/network/MovingAverage.java

@@ -32,8 +32,7 @@
 
 package jme3test.network;
 
-@Deprecated
-public class MovingAverage {
+class MovingAverage {
 
     private long[] samples;
     private long sum;