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 4b47e1c commit 6889321Copy full SHA for 6889321
lib-extra/src/main/java/com/diffplug/spotless/extra/GitWorkarounds.java
@@ -32,6 +32,8 @@
32
33
import com.diffplug.common.base.Errors;
34
35
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
36
+
37
/**
38
* Utility methods for Git workarounds.
39
*/
@@ -172,6 +174,7 @@ private static IOException emptyFile(File commonDir) {
172
174
return new IOException("Empty 'commondir' file: " + commonDir.getAbsolutePath());
173
175
}
176
177
+ @SuppressFBWarnings(value = "BC_UNCONFIRMED_CAST_OF_RETURN_VALUE")
178
@Override
179
public FileRepositoryBuilder readEnvironment(SystemReader sr) {
180
super.readEnvironment(sr);
0 commit comments