Skip to content

Commit

Permalink
removed duplicate function paramters
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoldstone committed Apr 1, 2024
1 parent 75fef9d commit 6367177
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ class _MyAppState extends State<MyApp> {
osc = OSC(
InternetAddress(activeConnection['ip']),
setCurrentChannel,
setHueSaturation,
setCommandLine,
setCurrentCueList,
setCurrentCue,
Expand Down
2 changes: 0 additions & 2 deletions lib/objects/osc_control.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class OSC {
final int hostPort = 8000;
final int clientPort = 8001;
final Function(ParameterList) setCurrentChannel;
final Function(double, double) setColor;
final Function(String) setCommandLine;
final void Function(int) setCurrentCueList;
final void Function(double) setCurrentCue;
Expand All @@ -25,7 +24,6 @@ class OSC {
OSC(
this.hostIP,
this.setCurrentChannel,
this.setColor,
this.setCommandLine,
this.setCurrentCueList,
this.setCurrentCue,
Expand Down

0 comments on commit 6367177

Please sign in to comment.