@@ -498,8 +498,7 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsRequest.prototype.toObject = functi
498
498
proto . cc . arduino . cli . commands . v1 . BoardDetailsRequest . toObject = function ( includeInstance , msg ) {
499
499
var f , obj = {
500
500
instance : ( f = msg . getInstance ( ) ) && cc_arduino_cli_commands_v1_common_pb . Instance . toObject ( includeInstance , f ) ,
501
- fqbn : jspb . Message . getFieldWithDefault ( msg , 2 , "" ) ,
502
- doNotExpandBuildProperties : jspb . Message . getBooleanFieldWithDefault ( msg , 3 , false )
501
+ fqbn : jspb . Message . getFieldWithDefault ( msg , 2 , "" )
503
502
} ;
504
503
505
504
if ( includeInstance ) {
@@ -545,10 +544,6 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsRequest.deserializeBinaryFromReader
545
544
var value = /** @type {string } */ ( reader . readString ( ) ) ;
546
545
msg . setFqbn ( value ) ;
547
546
break ;
548
- case 3 :
549
- var value = /** @type {boolean } */ ( reader . readBool ( ) ) ;
550
- msg . setDoNotExpandBuildProperties ( value ) ;
551
- break ;
552
547
default :
553
548
reader . skipField ( ) ;
554
549
break ;
@@ -593,13 +588,6 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsRequest.serializeBinaryToWriter = f
593
588
f
594
589
) ;
595
590
}
596
- f = message . getDoNotExpandBuildProperties ( ) ;
597
- if ( f ) {
598
- writer . writeBool (
599
- 3 ,
600
- f
601
- ) ;
602
- }
603
591
} ;
604
592
605
593
@@ -658,31 +646,13 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsRequest.prototype.setFqbn = functio
658
646
} ;
659
647
660
648
661
- /**
662
- * optional bool do_not_expand_build_properties = 3;
663
- * @return {boolean }
664
- */
665
- proto . cc . arduino . cli . commands . v1 . BoardDetailsRequest . prototype . getDoNotExpandBuildProperties = function ( ) {
666
- return /** @type {boolean } */ ( jspb . Message . getBooleanFieldWithDefault ( this , 3 , false ) ) ;
667
- } ;
668
-
669
-
670
- /**
671
- * @param {boolean } value
672
- * @return {!proto.cc.arduino.cli.commands.v1.BoardDetailsRequest } returns this
673
- */
674
- proto . cc . arduino . cli . commands . v1 . BoardDetailsRequest . prototype . setDoNotExpandBuildProperties = function ( value ) {
675
- return jspb . Message . setProto3BooleanField ( this , 3 , value ) ;
676
- } ;
677
-
678
-
679
649
680
650
/**
681
651
* List of repeated fields within this message type.
682
652
* @private {!Array<number>}
683
653
* @const
684
654
*/
685
- proto . cc . arduino . cli . commands . v1 . BoardDetailsResponse . repeatedFields_ = [ 10 , 11 , 13 , 15 , 16 ] ;
655
+ proto . cc . arduino . cli . commands . v1 . BoardDetailsResponse . repeatedFields_ = [ 10 , 11 , 13 , 15 ] ;
686
656
687
657
688
658
@@ -732,8 +702,7 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsResponse.toObject = function(includ
732
702
cc_arduino_cli_commands_v1_common_pb . Programmer . toObject , includeInstance ) ,
733
703
debuggingSupported : jspb . Message . getBooleanFieldWithDefault ( msg , 14 , false ) ,
734
704
identificationPropertiesList : jspb . Message . toObjectList ( msg . getIdentificationPropertiesList ( ) ,
735
- proto . cc . arduino . cli . commands . v1 . BoardIdentificationProperties . toObject , includeInstance ) ,
736
- buildPropertiesList : ( f = jspb . Message . getRepeatedField ( msg , 16 ) ) == null ? undefined : f
705
+ proto . cc . arduino . cli . commands . v1 . BoardIdentificationProperties . toObject , includeInstance )
737
706
} ;
738
707
739
708
if ( includeInstance ) {
@@ -832,10 +801,6 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsResponse.deserializeBinaryFromReade
832
801
reader . readMessage ( value , proto . cc . arduino . cli . commands . v1 . BoardIdentificationProperties . deserializeBinaryFromReader ) ;
833
802
msg . addIdentificationProperties ( value ) ;
834
803
break ;
835
- case 16 :
836
- var value = /** @type {string } */ ( reader . readString ( ) ) ;
837
- msg . addBuildProperties ( value ) ;
838
- break ;
839
804
default :
840
805
reader . skipField ( ) ;
841
806
break ;
@@ -969,13 +934,6 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsResponse.serializeBinaryToWriter =
969
934
proto . cc . arduino . cli . commands . v1 . BoardIdentificationProperties . serializeBinaryToWriter
970
935
) ;
971
936
}
972
- f = message . getBuildPropertiesList ( ) ;
973
- if ( f . length > 0 ) {
974
- writer . writeRepeatedString (
975
- 16 ,
976
- f
977
- ) ;
978
- }
979
937
} ;
980
938
981
939
@@ -1349,43 +1307,6 @@ proto.cc.arduino.cli.commands.v1.BoardDetailsResponse.prototype.clearIdentificat
1349
1307
} ;
1350
1308
1351
1309
1352
- /**
1353
- * repeated string build_properties = 16;
1354
- * @return {!Array<string> }
1355
- */
1356
- proto . cc . arduino . cli . commands . v1 . BoardDetailsResponse . prototype . getBuildPropertiesList = function ( ) {
1357
- return /** @type {!Array<string> } */ ( jspb . Message . getRepeatedField ( this , 16 ) ) ;
1358
- } ;
1359
-
1360
-
1361
- /**
1362
- * @param {!Array<string> } value
1363
- * @return {!proto.cc.arduino.cli.commands.v1.BoardDetailsResponse } returns this
1364
- */
1365
- proto . cc . arduino . cli . commands . v1 . BoardDetailsResponse . prototype . setBuildPropertiesList = function ( value ) {
1366
- return jspb . Message . setField ( this , 16 , value || [ ] ) ;
1367
- } ;
1368
-
1369
-
1370
- /**
1371
- * @param {string } value
1372
- * @param {number= } opt_index
1373
- * @return {!proto.cc.arduino.cli.commands.v1.BoardDetailsResponse } returns this
1374
- */
1375
- proto . cc . arduino . cli . commands . v1 . BoardDetailsResponse . prototype . addBuildProperties = function ( value , opt_index ) {
1376
- return jspb . Message . addToRepeatedField ( this , 16 , value , opt_index ) ;
1377
- } ;
1378
-
1379
-
1380
- /**
1381
- * Clears the list making it empty but non-null.
1382
- * @return {!proto.cc.arduino.cli.commands.v1.BoardDetailsResponse } returns this
1383
- */
1384
- proto . cc . arduino . cli . commands . v1 . BoardDetailsResponse . prototype . clearBuildPropertiesList = function ( ) {
1385
- return this . setBuildPropertiesList ( [ ] ) ;
1386
- } ;
1387
-
1388
-
1389
1310
1390
1311
1391
1312
0 commit comments