NoIssue: Add first sendCommand() method
This commit is contained in:
@@ -34,7 +34,7 @@ dependencies {
|
||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||||
compileOnly("org.jetbrains:annotations:26.0.2-1")
|
||||
|
||||
implementation("com.r35157.driver:ledsign-api:0.0.0")
|
||||
implementation("com.r35157.driver:ledsign-api:0.1-dev")
|
||||
}
|
||||
|
||||
java {
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.r35157.driver.ledsign.impl.sigmaasc434;
|
||||
|
||||
import com.r35157.driver.ledsign.LedSign;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class SigmaAsc434 implements LedSign {
|
||||
@Override
|
||||
public void sendCommand(@NotNull byte[] bytes) {
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
package com.r35157.driver.ledsign.impl.sigmaasc434;
|
||||
|
||||
import com.r35157.driver.ledsign.SomeInterface;
|
||||
|
||||
public class SomeImpl implements SomeInterface {
|
||||
public String concat(String x, String y) {
|
||||
return x + y;
|
||||
}
|
||||
|
||||
public void divideByZero() throws ArithmeticException {
|
||||
int a = 0/0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user