File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
src/main/java/net/twasi/obsremotejava
requests/GetTransitionList Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change
1
+ package net .twasi .obsremotejava .objects ;
2
+
3
+ public class Transition {
4
+ private String name ;
5
+
6
+ public String getName () {
7
+ return name ;
8
+ }
9
+ }
Original file line number Diff line number Diff line change 1
1
package net .twasi .obsremotejava .requests .GetTransitionList ;
2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
+ import net .twasi .obsremotejava .objects .Transition ;
4
5
import net .twasi .obsremotejava .requests .ResponseBase ;
5
6
6
7
import java .util .List ;
@@ -18,12 +19,4 @@ public String getCurrentTransition() {
18
19
public List <Transition > getTransitions () {
19
20
return transitions ;
20
21
}
21
-
22
- public class Transition {
23
- private String name ;
24
-
25
- public String getName () {
26
- return name ;
27
- }
28
- }
29
22
}
You can’t perform that action at this time.
0 commit comments