Skip to content

Commit

Permalink
Merge pull request #25 from dieechtenilente/master
Browse files Browse the repository at this point in the history
Fixes #24
  • Loading branch information
AhiruSoftware authored Dec 26, 2018
2 parents 76daec0 + 613468d commit ad2216d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/com/coldmirrorapp/Quote.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class Quote {
private Category category;


Quote(Category category, String id, String name) {
public Quote(Category category, String id, String name) {
this.category = category;
this.id = id;
this.name = name;
Expand All @@ -115,7 +115,7 @@ public static Quote[] getAll() {
}

public static Quote getRandom() {
return quoteArray[(int) (Math.random() * ((quoteArray.length) + 1))];
return quoteArray[(int) (Math.random() * ((quoteArray.length)))];
}

String getColor() {
Expand Down
4 changes: 2 additions & 2 deletions app/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Wed Dec 26 13:36:30 CET 2018
VERSION_BUILD=1529
#Wed Dec 26 14:14:29 CET 2018
VERSION_BUILD=1535

0 comments on commit ad2216d

Please sign in to comment.