application/org.openjdk.jmc.rjmx.services.jfr/src/main/java/org/openjdk/jmc/rjmx/services/jfr/internal/JfrRecordingInputStreamV2.java [139:156]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void close() throws IOException {
		if (closed == true) {
			return;
		}
		closed = true;
		if (!UNKNOWN_STREAM.equals(streamIdentifier)) {
			closeStream(streamIdentifier);
		}
		if (removeOnClose) {
			try {
				helper.closeRecording(recording);
			} catch (FlightRecorderException e) {
				IOException ioe = new IOException(e.getMessage());
				ioe.initCause(e);
				throw ioe;
			}
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



application/org.openjdk.jmc.rjmx.services.jfr/src/main/java/org/openjdk/jmc/rjmx/services/jfr/internal/JfrRecordingInputStreamV1.java [134:151]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public void close() throws IOException {
		if (closed == true) {
			return;
		}
		closed = true;
		if (!UNKNOWN_STREAM.equals(streamIdentifier)) {
			closeStream(streamIdentifier);
		}
		if (removeOnClose) {
			try {
				helper.closeRecording(recording);
			} catch (FlightRecorderException e) {
				IOException ioe = new IOException(e.getMessage());
				ioe.initCause(e);
				throw ioe;
			}
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



