Skip to content

Commit

Permalink
Fixed tz TCKs
Browse files Browse the repository at this point in the history
- When I renamed the parameter, I did not use "this"

Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Sep 23, 2022
1 parent 287ddf2 commit 8460306
Showing 1 changed file with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,105 +49,105 @@ public class ScheduledTimerDescriptor extends DescribableDescriptor {

private String info;

public void setSecond(String s) {
second = s;
public void setSecond(String second) {
this.second = second;
}

public String getSecond() {
return second;
}

public void setMinute(String m) {
minute = m;
public void setMinute(String minute) {
this.minute = minute;
}

public String getMinute() {
return minute;
}

public void setHour(String h) {
hour = h;
public void setHour(String hour) {
this.hour = hour;
}

public String getHour() {
return hour;
}

public void setDayOfMonth(String d) {
dayOfMonth = d;
public void setDayOfMonth(String dayOfMonth) {
this.dayOfMonth = dayOfMonth;
}

public String getDayOfMonth() {
return dayOfMonth;
}

public void setMonth(String m) {
month = m;
public void setMonth(String month) {
this.month = month;
}

public String getMonth() {
return month;
}

public void setDayOfWeek(String d) {
dayOfWeek = d;
public void setDayOfWeek(String dayOfWeek) {
this.dayOfWeek = dayOfWeek;
}

public String getDayOfWeek() {
return dayOfWeek;
}

public void setYear(String y) {
year = y;
public void setYear(String year) {
this.year = year;
}

public String getYear() {
return year;
}

public void setTimezone(String timezoneID) {
timezoneID = timezoneID;
this.timezoneID = timezoneID;
}

public String getTimezone() {
return timezoneID;
}

public void setStart(Date s) {
start = s == null ? null : new Date(s.getTime());
public void setStart(Date start) {
this.start = start == null ? null : new Date(start.getTime());
}

public Date getStart() {
return start == null ? null : new Date(start.getTime());
}

public void setEnd(Date e) {
end = e == null ? null : new Date(e.getTime());
public void setEnd(Date end) {
this.end = end == null ? null : new Date(end.getTime());
}

public Date getEnd() {
return end == null ? null : new Date(end.getTime());
}

public void setPersistent(boolean flag) {
persistent = flag;
this.persistent = flag;
}

public boolean getPersistent() {
return persistent;
}

public void setInfo(String i) {
info = i;
public void setInfo(String info) {
this.info = info;
}

public String getInfo() {
return info;
}


public void setTimeoutMethod(MethodDescriptor m) {
timeoutMethod = m;
public void setTimeoutMethod(MethodDescriptor methodDescriptor) {
this.timeoutMethod = methodDescriptor;
}


Expand Down

0 comments on commit 8460306

Please sign in to comment.