blob: 51fba27c0e6da355e46e11f004e1e60cd3f5e6c8 [file] [log] [blame]
package reactortest;
public class DoubleConverter {
public static byte[] asByteAr(Double d) {
return ByteArrayConverter.fromString(d.toString());
}
}