File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
it.baeyens.arduino.core/src Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -30,16 +30,12 @@ public enum CodeTypes {
30
30
31
31
private CodeTypes codeType ;
32
32
private Path myTemPlateFoldername ;
33
+ private boolean myMakeLinks = false ;
33
34
34
35
public Path getTemPlateFoldername () {
35
36
return this .myTemPlateFoldername ;
36
37
}
37
38
38
- public boolean isMyMakeLinks () {
39
- return this .myMakeLinks ;
40
- }
41
-
42
- private boolean myMakeLinks = false ;
43
39
private Path mySamples [];
44
40
45
41
public Path [] getMySamples () {
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ public CodeDescriptor getCodeDescription() {
203
203
return CodeDescriptor .createCustomTemplate (new Path (this .mTemplateFolderEditor .getStringValue ()));
204
204
case sample :
205
205
Path sampleFolders [] = this .mExampleEditor .GetSampleFolders ();
206
- boolean link = this .mExampleEditor . isSampleSelected ();
206
+ boolean link = this .mCheckBoxUseCurrentLinkSample . getSelection ();
207
207
return CodeDescriptor .createSample (link , sampleFolders );
208
208
}
209
209
// make sure this never happens
You can’t perform that action at this time.
0 commit comments