8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b68d4b6 commit bf2f90dCopy full SHA for bf2f90d
arduino-core/src/cc/arduino/contributions/packages/ContributedPlatform.java
@@ -60,6 +60,7 @@ public class ContributedPlatform extends DownloadableContribution {
60
private boolean builtIn;
61
private Map<ContributedToolReference, ContributedTool> resolvedToolReferences;
62
private ContributedPackage parentPackage;
63
+ private boolean deprecated;
64
65
@Override
66
public String getUrl() { return url; }
@@ -157,6 +158,14 @@ public void setParentPackage(ContributedPackage parentPackage) {
157
158
this.parentPackage = parentPackage;
159
}
160
161
+ public boolean isDeprecated() {
162
+ return deprecated;
163
+ }
164
+
165
+ public void setDeprecated(boolean deprecated) {
166
+ this.deprecated = deprecated;
167
168
169
170
public String toString() {
171
return getParsedVersion();
0 commit comments