Skip to content

Commit

Permalink
Changes some methods changed from public to package protected.
Browse files Browse the repository at this point in the history
  • Loading branch information
bozorgzadeh committed Oct 28, 2018
1 parent 022023e commit c2e0b6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/ir/sahab/logthrottle/LoggerWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -523,19 +523,19 @@ private Status(boolean shouldReport, String frequencyMessage) {
this.frequencyMessage = frequencyMessage;
}

public static Status doNotReport() {
static Status doNotReport() {
return DO_NOT_REPORT;
}

public static Status report(String reportAppendix) {
static Status report(String reportAppendix) {
return new Status(true, reportAppendix);
}

public boolean shouldReport() {
boolean shouldReport() {
return shouldReport;
}

public String getFrequencyMessage() {
String getFrequencyMessage() {
return frequencyMessage;
}
}
Expand Down

0 comments on commit c2e0b6e

Please sign in to comment.