Skip to content

Commit

Permalink
Merge pull request nickbutcher#137 from amilcar-andrade/about-syn
Browse files Browse the repository at this point in the history
Removed synthetic accessors from AboutActivity
  • Loading branch information
nickbutcher authored Nov 7, 2016
2 parents 9bbaa05 + 563c90a commit 22b3f6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/io/plaidapp/ui/AboutActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private static class LibraryAdapter extends RecyclerView.Adapter<RecyclerView.Vi

private static final int VIEW_TYPE_INTRO = 0;
private static final int VIEW_TYPE_LIBRARY = 1;
private static final Library[] libs = {
static final Library[] libs = {
new Library("Android support libraries",
"The Android support libraries offer a number of features that are not built into the framework.",
"https://developer.android.com/topic/libraries/support-library",
Expand Down Expand Up @@ -229,7 +229,7 @@ private static class LibraryAdapter extends RecyclerView.Adapter<RecyclerView.Vi
false) };

private final CircleTransform circleCrop;
private final Activity host;
final Activity host;

LibraryAdapter(Activity host) {
this.host = host;
Expand Down

0 comments on commit 22b3f6a

Please sign in to comment.