mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
29cb42eb50
Fixed a handful of glitches when dealing with multiple installed cores
37 lines
614 B
Java
37 lines
614 B
Java
package cc.arduino.packages.contributions;
|
|
|
|
import cc.arduino.contributions.packages.HostDependentDownloadableContribution;
|
|
|
|
public class HostDependentDownloadableContributionStub extends HostDependentDownloadableContribution {
|
|
|
|
@Override
|
|
public String getVersion() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getHost() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getUrl() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getChecksum() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public long getSize() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public String getArchiveFileName() {
|
|
return null;
|
|
}
|
|
}
|