Skip to content

Commit

Permalink
fix bug in passing on constructor arg
Browse files Browse the repository at this point in the history
  • Loading branch information
carltimmer committed Feb 16, 2024
1 parent f203070 commit 7118a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/org/jlab/coda/jevio/EvioCompactReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public EvioCompactReader(ByteBuffer byteBuffer, boolean synced) throws EvioExcep
* unsupported evio version.
*/
public EvioCompactReader(ByteBuffer byteBuffer, EvioNodeSource pool, boolean synced) throws EvioException {
this(byteBuffer, null, synced, true);
this(byteBuffer, pool, synced, true);
}


Expand Down

0 comments on commit 7118a8b

Please sign in to comment.