Skip to content

Commit 5538acc

Browse files
amalloyError Prone Team
authored and
Error Prone Team
committed
Automated rollback of commit 34d98e8.
*** Reason for rollback *** New behavior in ERROR-level check needs to be fixed across the depot. This change, if deployed in a JavaBuilder release, would break many targets ([] I've confirmed that this rollback fixes at least some of the errors in the Javabuilder TGP, such as http://sponge2/56c76904-1bce-4ff3-9901-417f257c75ab. *** Original change description *** Remove conditional flags now that they are enabled. #checkreturnvalue *** PiperOrigin-RevId: 405950518
1 parent f91fff5 commit 5538acc

File tree

1 file changed

+29
-22
lines changed

1 file changed

+29
-22
lines changed

core/src/main/java/com/google/errorprone/bugpatterns/ReturnValueIgnored.java

+29-22
Original file line numberDiff line numberDiff line change
@@ -264,11 +264,20 @@ private static boolean functionalMethod(ExpressionTree tree, VisitorState state)
264264
private static final Matcher<ExpressionTree> PRIMITIVE_METHODS =
265265
allOf(not(PRIMITIVE_PARSING_METHODS), PRIMITIVE_NON_PARSING_METHODS);
266266

267+
/**
268+
* The return values of {@link java.util.Optional} static methods and some instance methods should
269+
* always be checked.
270+
*/
271+
private static final Matcher<ExpressionTree> OPTIONAL_METHODS =
272+
anyOf(
273+
staticMethod().onClass("java.util.Optional"),
274+
instanceMethod().onExactClass("java.util.Optional").namedAnyOf("isEmpty", "isPresent"));
275+
267276
/**
268277
* The return values of {@link java.util.Optional} methods should always be checked (except for
269278
* void-returning ones, which won't be checked by AbstractReturnValueIgnored).
270279
*/
271-
private static final Matcher<ExpressionTree> OPTIONAL_METHODS =
280+
private static final Matcher<ExpressionTree> MORE_OPTIONAL_METHODS =
272281
anyMethod().onClass("java.util.Optional");
273282

274283
/**
@@ -347,39 +356,37 @@ private static boolean functionalMethod(ExpressionTree tree, VisitorState state)
347356

348357
private static final Matcher<? super ExpressionTree> SPECIALIZED_MATCHER =
349358
anyOf(
350-
// keep-sorted start
351-
ARRAYS_METHODS,
352-
CHAR_SEQUENCE_METHODS,
353-
COLLECTION_METHODS,
354-
COLLECTOR_METHODS,
355-
ENUM_METHODS,
356-
ITERABLE_METHODS,
357-
ITERATOR_METHODS,
358-
JODA_TIME_METHODS,
359-
MAP_ENTRY_METHODS,
360-
MAP_METHODS,
361-
OBJECTS_METHODS,
362-
OPTIONAL_METHODS,
363-
PRIMITIVE_METHODS,
364-
PROTO_METHODS,
365359
RETURNS_SAME_TYPE,
366360
ReturnValueIgnored::functionalMethod,
367-
ReturnValueIgnored::javaTimeTypes,
368361
STREAM_METHODS,
369362
STRING_METHODS,
370-
THROWABLE_METHODS,
371-
TIME_UNIT_METHODS
372-
// keep-sorted end
373-
);
363+
PROTO_METHODS,
364+
PRIMITIVE_METHODS,
365+
ARRAYS_METHODS,
366+
OPTIONAL_METHODS,
367+
TIME_UNIT_METHODS,
368+
ReturnValueIgnored::javaTimeTypes,
369+
COLLECTION_METHODS,
370+
MAP_METHODS,
371+
MAP_ENTRY_METHODS,
372+
ITERABLE_METHODS,
373+
ITERATOR_METHODS,
374+
JODA_TIME_METHODS);
374375

375376
private final Matcher<? super ExpressionTree> matcher;
376377

377378
public ReturnValueIgnored(ErrorProneFlags flags) {
378379
this.matcher =
379380
anyOf(
380381
SPECIALIZED_MATCHER,
382+
getMatcher(flags, "ReturnValueIgnored:MoreOptional", MORE_OPTIONAL_METHODS),
381383
getMatcher(flags, "ReturnValueIgnored:ClassMethods", CLASS_METHODS),
382-
getMatcher(flags, "ReturnValueIgnored:ObjectMethods", OBJECT_METHODS));
384+
getMatcher(flags, "ReturnValueIgnored:ObjectMethods", OBJECT_METHODS),
385+
getMatcher(flags, "ReturnValueIgnored:ObjectsMethods", OBJECTS_METHODS),
386+
getMatcher(flags, "ReturnValueIgnored:CharSequenceMethods", CHAR_SEQUENCE_METHODS),
387+
getMatcher(flags, "ReturnValueIgnored:EnumMethods", ENUM_METHODS),
388+
getMatcher(flags, "ReturnValueIgnored:ThrowableMethods", THROWABLE_METHODS),
389+
getMatcher(flags, "ReturnValueIgnored:CollectorMethods", COLLECTOR_METHODS));
383390
}
384391

385392
private static Matcher<? super ExpressionTree> getMatcher(

0 commit comments

Comments
 (0)