Removed obsolete converter

This commit is contained in:
Marcin Grzejszczak
2016-01-20 15:47:29 +01:00
parent 72574f31ed
commit 10325e9547

View File

@@ -1,17 +0,0 @@
package org.springframework.cloud.sleuth.sampler;
import org.springframework.core.convert.converter.Converter;
import java.util.UUID;
/**
* Interface showing how to convert String into UUID
*
* @author Marcin Grzejszczak
* @author Adrian Cole
*/
public interface StringToUuidConverter extends Converter<String, UUID> {
@Override
UUID convert(String source);
}