File tree 2 files changed +2
-2
lines changed
src/java.desktop/share/classes/com/sun/imageio/plugins/jpeg
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1824,7 +1824,7 @@ private synchronized void clearThreadLock() {
1824
1824
Thread currThread = Thread .currentThread ();
1825
1825
if (theThread == null || theThread != currThread ) {
1826
1826
throw new IllegalStateException ("Attempt to clear thread lock " +
1827
- " form wrong thread." +
1827
+ " from wrong thread." +
1828
1828
" Locked thread: " + theThread +
1829
1829
"; current thread: " + currThread );
1830
1830
}
Original file line number Diff line number Diff line change @@ -1821,7 +1821,7 @@ private synchronized void setThreadLock() {
1821
1821
private synchronized void clearThreadLock () {
1822
1822
Thread currThread = Thread .currentThread ();
1823
1823
if (theThread == null || theThread != currThread ) {
1824
- throw new IllegalStateException ("Attempt to clear thread lock form wrong thread. " +
1824
+ throw new IllegalStateException ("Attempt to clear thread lock from wrong thread. " +
1825
1825
"Locked thread: " + theThread +
1826
1826
"; current thread: " + currThread );
1827
1827
}
You can’t perform that action at this time.
0 commit comments