Browse Source

Fixed compilation error;

tags/1.0.0
huanghaiquan 6 years ago
parent
commit
e70049802b
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      source/ledger/ledger-model/src/main/java/com/jd/blockchain/ledger/BytesValueEncoding.java

+ 4
- 4
source/ledger/ledger-model/src/main/java/com/jd/blockchain/ledger/BytesValueEncoding.java View File

@@ -6,19 +6,19 @@ public class BytesValueEncoding {
public static BytesValue encode(Object value, Class<?> type) {
throw new IllegalStateException("Not implemented!");
}
public static BytesValueList encode(Object[] values, Class<?>[] types) {
throw new IllegalStateException("Not implemented!");
}
public static Object decode(BytesValue value, Class<?> type) {
throw new IllegalStateException("Not implemented!");
}
public static Object[] decode(BytesValueList values, Class<?>[] types) {
throw new IllegalStateException("Not implemented!");
}
public static Object getDefaultValue(Class<?> type) {


Loading…
Cancel
Save