Skip to content

Instantly share code, notes, and snippets.

@hakanai
Created October 22, 2018 01:39
Show Gist options
  • Save hakanai/048918ec1c9259fa6aa635324af80db1 to your computer and use it in GitHub Desktop.
Save hakanai/048918ec1c9259fa6aa635324af80db1 to your computer and use it in GitHub Desktop.
.../MimeWalker.java:128: warning: [OperatorPrecedence] Use grouping parenthesis to make the operator precedence explicit
(contentType.startsWith("application/octet-stream")) &&
^
(see https://errorprone.info/bugpattern/OperatorPrecedence)
Did you mean '((contentType.startsWith("application/octet-stream")) &&'?
.../MimeWalker.java:128: warning: [UnnecessaryParentheses] Unnecessary use of grouping parentheses
(contentType.startsWith("application/octet-stream")) &&
^
(see https://errorprone.info/bugpattern/UnnecessaryParentheses)
Did you mean 'contentType.startsWith("application/octet-stream") &&'?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment