Skip to content

Commit

Permalink
make Theme creation package protected
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Aug 17, 2016
1 parent f9a0bb2 commit 53850b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/main/java/com/auth0/android/lock/Theme.java
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ public Theme[] newArray(int size) {
};


public static Builder newBuilder() {
static Builder newBuilder() {
return new Theme.Builder();
}

public static class Builder {
static class Builder {

private int headerTitleRes;
private int headerLogoRes;
Expand Down

0 comments on commit 53850b9

Please sign in to comment.