File tree 1 file changed +4
-4
lines changed
check_api/src/main/java/com/google/errorprone/fixes
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ public Builder swap(Tree node1, Tree node2) {
294
294
295
295
/**
296
296
* Add an import statement as part of this SuggestedFix. Import string should be of the form
297
- * "foo.bar.baz ".
297
+ * "foo.bar.SomeClass ".
298
298
*/
299
299
@ CanIgnoreReturnValue
300
300
public Builder addImport (String importString ) {
@@ -304,7 +304,7 @@ public Builder addImport(String importString) {
304
304
305
305
/**
306
306
* Add a static import statement as part of this SuggestedFix. Import string should be of the
307
- * form "foo.bar.baz ".
307
+ * form "foo.bar.SomeClass.someMethod" or "foo.bar.SomeClass.SOME_FIELD ".
308
308
*/
309
309
@ CanIgnoreReturnValue
310
310
public Builder addStaticImport (String importString ) {
@@ -314,7 +314,7 @@ public Builder addStaticImport(String importString) {
314
314
315
315
/**
316
316
* Remove an import statement as part of this SuggestedFix. Import string should be of the form
317
- * "foo.bar.baz ".
317
+ * "foo.bar.SomeClass ".
318
318
*/
319
319
@ CanIgnoreReturnValue
320
320
public Builder removeImport (String importString ) {
@@ -324,7 +324,7 @@ public Builder removeImport(String importString) {
324
324
325
325
/**
326
326
* Remove a static import statement as part of this SuggestedFix. Import string should be of the
327
- * form "foo.bar.baz ".
327
+ * form "foo.bar.SomeClass.someMethod" or "foo.bar.SomeClass.SOME_FIELD ".
328
328
*/
329
329
@ CanIgnoreReturnValue
330
330
public Builder removeStaticImport (String importString ) {
You can’t perform that action at this time.
0 commit comments