Skip to content

Commit

Permalink
Add .gitignore
Browse files Browse the repository at this point in the history
And fix two typos.
  • Loading branch information
rickie authored Dec 26, 2020
1 parent 44f8b56 commit cfd88df
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# General Java development.
.attach_pid*
.classpath
.DS_Store
.factorypath
.idea
.project
.settings
target
*.iml
*.swp
4 changes: 2 additions & 2 deletions error-prone-contrib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ The following is a list of checks we'd like to see implemented:
`expr.switchIfEmpty(Single.error(...))`, so that an application-specific
exception is thrown instead of `NoSuchElementException`.
- An RxJava-specific check which flags use of `#assertValueSet` without
`#assertValueCount`, as the former method doesn't do what one may intuitivily
`#assertValueCount`, as the former method doesn't do what one may intuitively
expect it to do. See ReactiveX/RxJava#6151.

### Refaster extension ideas
Expand All @@ -262,7 +262,7 @@ Refaster's expressiveness:
rewriting `optional1.map(Optional::of).orElse(optional2)` to `optional1.or(()
-> optional2)` is not behavior preserving if evaluation of `optional2` has
side-effects.
- Similarly, ceratin refactoring operations are only valid if one of the
- Similarly, certain refactoring operations are only valid if one of the
matches expressions is not `@Nullable`. It'd be nice to be able to express
this.
- Generalize `@Placeholder` support such that rules can reference e.g. "any
Expand Down

0 comments on commit cfd88df

Please sign in to comment.