Skip to content

Commit

Permalink
make static method public
Browse files Browse the repository at this point in the history
  • Loading branch information
carltimmer committed Dec 3, 2024
1 parent 5e6b58c commit 3e27650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/org/jlab/coda/jevio/EvioReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ public void parseEvent(EvioEvent evioEvent) throws EvioException {
* @return an EvioEvent object parsed from the given array.
* @throws EvioException if null arg, too little data, length too large, or data not in evio format.
*/
static EvioEvent getEvent(byte[] array, int offset, ByteOrder order) throws EvioException {
public static EvioEvent getEvent(byte[] array, int offset, ByteOrder order) throws EvioException {

if (array == null || array.length - offset < 8) {
throw new EvioException("arg null or too little data");
Expand Down

0 comments on commit 3e27650

Please sign in to comment.