We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41fbacf commit 0c9a1d2Copy full SHA for 0c9a1d2
src/main/java/com/google/devtools/build/lib/query2/query/output/StreamedProtoOutputFormatter.java
@@ -89,7 +89,7 @@ private WrappedIOException(IOException cause) {
89
}
90
91
@Override
92
- public synchronized IOException getCause() {
+ public IOException getCause() {
93
return (IOException) super.getCause();
94
95
@@ -100,7 +100,7 @@ private WrappedInterruptedException(InterruptedException cause) {
100
101
102
103
- public synchronized InterruptedException getCause() {
+ public InterruptedException getCause() {
104
return (InterruptedException) super.getCause();
105
106
0 commit comments