Skip to content

Commit 7cfdcf8

Browse files
committed
Version 0.3.0
ION 1.0 format finalized. IonUtil updated to be able to create an IonFieldReaderByte too.
1 parent aa8f154 commit 7cfdcf8

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.nanosai</groupId>
88
<artifactId>grid-ops</artifactId>
9-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1010

1111
<dependencies>
1212

src/main/java/com/nanosai/gridops/ion/IonUtil.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ public static IIonFieldReader createFieldReader(Field field, IIonObjectReaderCon
111111
if(boolean.class.equals(fieldType)){
112112
return new IonFieldReaderBoolean(field);
113113
}
114+
if(byte.class.equals(fieldType)){
115+
return new IonFieldReaderByte(field);
116+
}
114117
if(short.class.equals(fieldType)){
115118
return new IonFieldReaderShort(field);
116119
}

0 commit comments

Comments
 (0)