Skip to content

Commit

Permalink
What? IsiActivity.java:323: error: cannot assign a value to final var…
Browse files Browse the repository at this point in the history
…iable c

                        c = cr.query(uri, null, null, null, null);
                        ^
  • Loading branch information
yukuku committed Sep 28, 2017
1 parent 13ddfea commit 0a9c6ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Alkitab/src/main/java/yuku/alkitab/base/IsiActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public void onTwofingerEnd(final TwofingerLinearLayout.Mode mode) {
.appendQueryParameter("mode", "snippet")
.build();

final Cursor c;
Cursor c;
try {
c = cr.query(uri, null, null, null, null);
} catch (Exception e) {
Expand Down

0 comments on commit 0a9c6ef

Please sign in to comment.