Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / cacheinvalidation / src / java / com / google / ipc / invalidation / util / Smearer.java
index 3a3ef06..f95f365 100644 (file)
@@ -16,8 +16,6 @@
 
 package com.google.ipc.invalidation.util;
 
-import com.google.common.base.Preconditions;
-
 import java.util.Random;
 
 /**
@@ -57,8 +55,4 @@ public class Smearer {
     double smearFactor = (2 * random.nextDouble() - 1.0) * smearFraction;
     return (int) Math.ceil(delay + delay * smearFactor);
   }
-
-  /** Changes the smear percent of this object to be {@code smearPercent}. */
-  public void changeSmearPercent(int smearPercent) {
-  }
 }