1 | package g0803.bindingofshiba.events; | |
2 | ||
3 | import g0803.bindingofshiba.App; | |
4 | ||
5 | public class Event { | |
6 | private final double dt; | |
7 | private final App app; | |
8 | ||
9 | public Event(double dt, App app) { | |
10 | this.dt = dt; | |
11 | this.app = app; | |
12 | } | |
13 | ||
14 | public App getApp() { | |
15 |
1
1. getApp : replaced return value with null for g0803/bindingofshiba/events/Event::getApp → KILLED |
return app; |
16 | } | |
17 | ||
18 | public double getTickTime() { | |
19 |
1
1. getTickTime : replaced double return with 0.0d for g0803/bindingofshiba/events/Event::getTickTime → KILLED |
return dt; |
20 | } | |
21 | } | |
Mutations | ||
15 |
1.1 |
|
19 |
1.1 |