Skip to content
This repository was archived by the owner on Jun 16, 2019. It is now read-only.

Commit 0d2b45d

Browse files
committed
171022
1 parent 0f81376 commit 0d2b45d

167 files changed

Lines changed: 1031 additions & 1099 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.github.epd.sprout.test"
4-
android:versionCode="1710081"
5-
android:versionName="171008"
4+
android:versionCode="1710211"
5+
android:versionName="171021"
66
android:installLocation="auto">
77

88
<uses-feature

app/src/main/java/com/github/epd/sprout/Badges.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static void reset() {
7171
private static final String BADGES = "badges";
7272

7373
private static HashSet<Badge> restore(Bundle bundle) {
74-
HashSet<Badge> badges = new HashSet<Badge>();
74+
HashSet<Badge> badges = new HashSet<>();
7575

7676
String[] names = bundle.getStringArray(BADGES);
7777
for (int i = 0; i < names.length; i++) {
@@ -112,7 +112,7 @@ public static void loadGlobal() {
112112
global = restore(bundle);
113113

114114
} catch (Exception e) {
115-
global = new HashSet<Badge>();
115+
global = new HashSet<>();
116116
}
117117
}
118118
}
@@ -174,7 +174,7 @@ public static void validateMastery() {
174174
}
175175
}
176176

177-
public static void validateSupporter() {
177+
/*public static void validateSupporter() {
178178
loadGlobal();
179179
global.add(Badge.SUPPORTER);
180180
saveNeeded = true;
@@ -185,7 +185,7 @@ public static void validateSupporter2() {
185185
global.add(Badge.SUPPORTER2);
186186
saveNeeded = true;
187187
}
188-
188+
*/
189189
private static void displayBadge(Badge badge) {
190190

191191
if (badge == null) {

0 commit comments

Comments
 (0)