Update EventRefreshGui.java

This commit is contained in:
AdrianLxM 2016-11-07 01:00:50 +01:00 committed by GitHub
parent be39a35d68
commit 68be6179f8

View file

@ -4,4 +4,15 @@ package info.nightscout.androidaps.events;
* Created by mike on 13.06.2016.
*/
public class EventRefreshGui {
public boolean isSwitchToLast() {
return switchToLast;
}
private final boolean switchToLast;
public EventRefreshGui(boolean switchToLast){
this.switchToLast = switchToLast;
}
}