-
-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix proguard for gson. Fix multireddit's info cannot be updated in mi…
…nifiedRelease. Version 4.0.7.
- Loading branch information
1 parent
ff49660
commit 7911f4f
Showing
4 changed files
with
15 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...rc/main/java/ml/docilealligator/infinityforreddit/MultiReddit/SubredditInMultiReddit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package ml.docilealligator.infinityforreddit.MultiReddit; | ||
|
||
public class SubredditInMultiReddit { | ||
String name; | ||
|
||
SubredditInMultiReddit() {} | ||
|
||
SubredditInMultiReddit(String subredditName) { | ||
name = subredditName; | ||
} | ||
} |