Fix typo decimal62 -> decimal64.

This commit is contained in:
Chris Rankin 2019-08-26 15:26:36 +01:00
parent 4ebd02bc04
commit 92ae45a949

View File

@ -29,7 +29,7 @@ object AMQPTypeIdentifiers {
Float::class to "float",
Double::class to "double",
Decimal32::class to "decimal32",
Decimal64::class to "decimal62",
Decimal64::class to "decimal64",
Decimal128::class to "decimal128",
Date::class to "timestamp",
UUID::class to "uuid",
@ -62,4 +62,4 @@ object AMQPTypeIdentifiers {
private val primitiveByteArrayType = TypeIdentifier.ArrayOf(TypeIdentifier.forClass(Byte::class.javaPrimitiveType!!))
fun nameForType(type: Type): String = nameForType(TypeIdentifier.forGenericType(type))
}
}