Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fall through comment to appease ErrorProne #10

Merged
merged 1 commit into from
Apr 16, 2019

Conversation

jschaf
Copy link
Contributor

@jschaf jschaf commented Jul 7, 2018

Compiling with error prone (the default with Bazel) complains because one of the case doesn't have "fall-through".

StringBase64Decoder.java:152: error: [FallThrough] Execution may fall through from the previous case; add a `// fall through` comment before this line if it was deliberate
            case STATE_OUTPUT_3:
            ^
    (see http://errorprone.info/bugpattern/FallThrough)

Compiling with error prone (the default with Bazel) complains because one of the case doesn't have "fall-through".

```
StringBase64Decoder.java:152: error: [FallThrough] Execution may fall through from the previous case; add a `// fall through` comment before this line if it was deliberate
            case STATE_OUTPUT_3:
            ^
    (see http://errorprone.info/bugpattern/FallThrough)
```
@jschaf
Copy link
Contributor Author

jschaf commented Apr 10, 2019

Ping, this is a pretty innocuous change.

@jschaf jschaf closed this Apr 16, 2019
@cowtowncoder
Copy link
Member

Ah, sorry -- somehow missed this one.

@cowtowncoder cowtowncoder reopened this Apr 16, 2019
@cowtowncoder cowtowncoder merged commit 3b3bb3c into FasterXML:master Apr 16, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants