This repository was archived by the owner on Aug 18, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/main/java/org/codeoverflow/chatoverflow/api/io/dto/stat/stream Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,16 +51,16 @@ public int getResub() {
51
51
/**
52
52
* Returns the tier of the subscription {@link SubscriptionTier}.
53
53
*
54
- * @return the sub tier
54
+ * @return the subscription tier
55
55
*/
56
56
public SubscriptionTier getTier () {
57
57
return tier ;
58
58
}
59
59
60
60
/**
61
- * Returns if the sub was gifted by someone else or not
61
+ * Returns if the subscription was gifted by someone else or not
62
62
*
63
- * @return it the sub was gifted
63
+ * @return it the subscription was gifted
64
64
*/
65
65
public boolean isGifted () {
66
66
return gifted ;
@@ -69,7 +69,7 @@ public boolean isGifted() {
69
69
/**
70
70
* Returns the donor of the subscription if it was gifted.
71
71
*
72
- * @return the donor of the sub
72
+ * @return the donor of the subscription
73
73
*/
74
74
public T getDonor () {
75
75
return donor ;
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ public String toString() {
32
32
/**
33
33
* Parse the tier from a string
34
34
*
35
- * @param tier the tier of the sub . 0 is prime, 1 is tier 1 and so on.
36
- * @return the sub -tier represented by the passed number or {@link #UNKNOWN}.
35
+ * @param tier the tier of the subscription . 0 is prime, 1 is tier 1 and so on.
36
+ * @return the subscription -tier represented by the passed number or {@link #UNKNOWN}.
37
37
*/
38
38
public static SubscriptionTier parse (int tier ) {
39
39
return Arrays .stream (values ())
You can’t perform that action at this time.
0 commit comments