There was an error while loading. Please reload this page.
1 parent efdde1c commit 08c75e9Copy full SHA for 08c75e9
1 file changed
protocol/src/main/java/org/fidoalliance/fdo/protocol/Mapper.java
@@ -135,11 +135,13 @@ public byte[] writeAsCborByteString(Object value) throws IOException {
135
return cborMapper.writeValueAsBytes(writeValue(value));
136
}
137
138
- /**
139
- * @return A CBOR Null value.
140
- */
+ /**
+ * Returns a CBOR Null value.
+ *
141
+ * @return A CBOR Null value.
142
+ */
143
public byte[] cborNull() {
- return new byte[]{(byte) 0xf6};
144
+ return new byte[]{(byte) 0xf6};
145
146
147
/**
0 commit comments