Skip to content

Commit a5f4a4a

Browse files
committed
Fix typo in BExpr
1 parent e86936b commit a5f4a4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/virtual-machine/src/main/java/org/smoothbuild/virtualmachine/bytecode/expr/base/BArray.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public BArrayType type() {
3434
}
3535

3636
public long size() throws BytecodeException {
37-
return hashCoundInDataNode();
37+
return hashCountInDataNode();
3838
}
3939

4040
public <T extends BValue> List<T> elements(Class<T> clazz) throws BytecodeException {

src/virtual-machine/src/main/java/org/smoothbuild/virtualmachine/bytecode/expr/base/BExpr.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ protected <T> T readData(Function0<T, HashedDbException> reader) throws Bytecode
119119
reader, e -> new DecodeExprNodeException(hash(), kind(), DATA_PATH, e));
120120
}
121121

122-
protected long hashCoundInDataNode() throws BytecodeException {
122+
protected long hashCountInDataNode() throws BytecodeException {
123123
return invokeAndChainHashedDbException(
124124
() -> exprDb.hashedDb().readHashChainSize(dataHash()),
125125
e -> new DecodeExprNodeException(hash(), kind(), DATA_PATH, e));

0 commit comments

Comments
 (0)