Skip to content

Commit

Permalink
rewrite EvioReaderV6 as a sub class of EvioReaderUnsyncV6
Browse files Browse the repository at this point in the history
  • Loading branch information
carltimmer committed Sep 13, 2024
1 parent 50c9888 commit 71f1c89
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 365 deletions.
8 changes: 4 additions & 4 deletions java/org/jlab/coda/jevio/EvioReaderUnsyncV6.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@
public class EvioReaderUnsyncV6 implements IEvioReader {

/** The reader object which does all the work. */
private Reader reader;
protected Reader reader;

/** Is this object currently closed? */
private boolean closed;
protected boolean closed;

/** Root element tag for XML file */
private static final String ROOT_ELEMENT = "evio-data";
protected static final String ROOT_ELEMENT = "evio-data";

/** Parser object for file/buffer. */
private EventParser parser;
protected EventParser parser;


//------------------------
Expand Down
Loading

0 comments on commit 71f1c89

Please sign in to comment.