Turned ByteBufferConverter's visibility to package level

This commit is contained in:
Juergen Hoeller
2013-10-04 22:52:14 +02:00
parent 3fad0fa432
commit bd4c64af04
2 changed files with 5 additions and 5 deletions

View File

@@ -30,8 +30,9 @@ import org.springframework.core.convert.converter.ConditionalGenericConverter;
* any type that the {@link ConversionService} support via {@code byte[]}.
*
* @author Phillip Webb
* @since 4.0
*/
public class ByteBufferConverter implements ConditionalGenericConverter {
final class ByteBufferConverter implements ConditionalGenericConverter {
private static final TypeDescriptor BYTE_BUFFER_TYPE = TypeDescriptor.valueOf(ByteBuffer.class);