src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/EventFileStream.java
changeset 59226 a0f39cc47387
parent 58863 c16ac7a2eba4
equal deleted inserted replaced
59225:80e1201f6c9a 59226:a0f39cc47387
    48 
    48 
    49     private ChunkParser currentParser;
    49     private ChunkParser currentParser;
    50     private RecordedEvent[] cacheSorted;
    50     private RecordedEvent[] cacheSorted;
    51 
    51 
    52     public EventFileStream(AccessControlContext acc, Path path) throws IOException {
    52     public EventFileStream(AccessControlContext acc, Path path) throws IOException {
    53         super(acc, false);
    53         super(acc, null);
    54         Objects.requireNonNull(path);
    54         Objects.requireNonNull(path);
    55         this.input = new RecordingInput(path.toFile(), FileAccess.UNPRIVILIGED);
    55         this.input = new RecordingInput(path.toFile(), FileAccess.UNPRIVILIGED);
    56     }
    56     }
    57 
    57 
    58     @Override
    58     @Override