1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-20 14:54:31 +01:00

Tests: Fix TargetPlatformStub implementation

This commit is contained in:
Martino Facchin 2020-04-07 11:01:02 +02:00 committed by Cristian Maglie
parent 8c91692845
commit 737f301c12

View File

@ -99,4 +99,10 @@ public class TargetPlatformStub implements TargetPlatform {
public TargetPackage getContainerPackage() {
return targetPackage;
}
@Override
public boolean isInSketchbook() {
// TODO Auto-generated method stub
return false;
}
}