Skip to content

Commit 0139abb

Browse files
committedApr 13, 2022
Cleanup
1 parent 6757f38 commit 0139abb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/java.base/share/classes/sun/nio/cs/StreamEncoder.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void flushBuffer() throws IOException {
115115
locker.unlock();
116116
}
117117
} else {
118-
synchronized (super.lock) {
118+
synchronized (lock) {
119119
lockedFlushBuffer();
120120
}
121121
}
@@ -143,7 +143,7 @@ public void write(char[] cbuf, int off, int len) throws IOException {
143143
locker.unlock();
144144
}
145145
} else {
146-
synchronized (super.lock) {
146+
synchronized (lock) {
147147
lockedWrite(cbuf, off, len);
148148
}
149149
}
@@ -180,7 +180,7 @@ public void write(CharBuffer cb) throws IOException {
180180
locker.unlock();
181181
}
182182
} else {
183-
synchronized (super.lock) {
183+
synchronized (lock) {
184184
lockedWrite(cb);
185185
}
186186
}

0 commit comments

Comments
 (0)
Please sign in to comment.