File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
arduino-core/src/cc/arduino/contributions/packages Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ public class ContributedPlatform extends DownloadableContribution {
6060 private boolean builtIn ;
6161 private Map <ContributedToolReference , ContributedTool > resolvedToolReferences ;
6262 private ContributedPackage parentPackage ;
63+ private boolean deprecated ;
6364
6465 @ Override
6566 public String getUrl () { return url ; }
@@ -157,6 +158,14 @@ public void setParentPackage(ContributedPackage parentPackage) {
157158 this .parentPackage = parentPackage ;
158159 }
159160
161+ public boolean isDeprecated () {
162+ return deprecated ;
163+ }
164+
165+ public void setDeprecated (boolean deprecated ) {
166+ this .deprecated = deprecated ;
167+ }
168+
160169 @ Override
161170 public String toString () {
162171 return getParsedVersion ();
You can’t perform that action at this time.
0 commit comments