remove unneeded qualifier

This commit is contained in:
Spencer Gibb
2015-06-26 13:48:13 -06:00
parent 4320bbc663
commit a4e92c2c38

View File

@@ -29,5 +29,5 @@ package org.springframework.cloud.sleuth;
* This would trace 50% of all gets, 75% of all puts and would not trace any other requests.
*/
public interface Sampler<T> {
public boolean next(T info);
boolean next(T info);
}