jdk/src/java.base/share/classes/sun/security/ssl/DTLSInputRecord.java
changeset 32649 2ee9017c7597
parent 30904 ec0224270f90
child 34687 d302ed125dc9
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    75         this.readCipher = readCipher;
    75         this.readCipher = readCipher;
    76         this.readEpoch++;
    76         this.readEpoch++;
    77     }
    77     }
    78 
    78 
    79     @Override
    79     @Override
    80     synchronized public void close() throws IOException {
    80     public synchronized void close() throws IOException {
    81         if (!isClosed) {
    81         if (!isClosed) {
    82             prevReadCipher.dispose();
    82             prevReadCipher.dispose();
    83             super.close();
    83             super.close();
    84         }
    84         }
    85     }
    85     }