Compare commits

2 Commits

Author SHA256 Message Date
b51dd833e8 NoIssue: Add first sendCommand() method 2026-02-08 17:09:32 +01:00
09b61b1073 NoIssue: Add first sendCommand() method 2026-02-08 17:02:04 +01:00
2 changed files with 7 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
package com.r35157.driver.ledsign;
import org.jetbrains.annotations.NotNull;
public interface LedSign {
void sendCommand(@NotNull byte[] payload);
}

View File

@@ -1,6 +0,0 @@
package com.r35157.driver.ledsign;
public interface SomeInterface {
String concat(String x, String y);
void divideByZero() throws ArithmeticException;
}