Skip to content

Commit 1fab3f7

Browse files
committed
Remove comment
1 parent 23b1882 commit 1fab3f7

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

msgpack-core/src/main/java/org/msgpack/core/MessageUnpacker.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -549,9 +549,6 @@ public Variable unpackValue(Variable var)
549549
int size = unpackArrayHeader();
550550
List<Value> list = new ArrayList<Value>(size);
551551
for (int i = 0; i < size; i++) {
552-
//Variable e = new Variable();
553-
//unpackValue(e);
554-
//list.add(e);
555552
list.add(unpackValue());
556553
}
557554
var.setArrayValue(list);
@@ -561,10 +558,6 @@ public Variable unpackValue(Variable var)
561558
int size = unpackMapHeader();
562559
Map<Value, Value> map = new HashMap<Value, Value>();
563560
for (int i = 0; i < size; i++) {
564-
//Variable k = new Variable();
565-
//unpackValue(k);
566-
//Variable v = new Variable();
567-
//unpackValue(v);
568561
Value k = unpackValue();
569562
Value v = unpackValue();
570563
map.put(k, v);

0 commit comments

Comments
 (0)