File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
java/gradle/src/main/kotlin Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import java.util.jar.JarFile
1212
1313abstract class LibrariesTask : DefaultTask () {
1414
15+ // TODO: Allow this directory to not exist
1516 @InputDirectory
1617 val librariesDirectory: DirectoryProperty = project.objects.directoryProperty()
1718
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ class ProcessingPlugin @Inject constructor(private val objectFactory: ObjectFact
4141 }
4242
4343 // Overwrite the preferences as the preprocessor still uses the old PDE settings
44+ // TODO: Fix loading the preferences on windows
4445 // TODO: Replace these settings in the preprocessor instead
4546 val preferences = File (settingsFolder, " preferences.txt" )
4647 val prefs = Properties ()
@@ -54,11 +55,6 @@ class ProcessingPlugin @Inject constructor(private val objectFactory: ObjectFact
5455 ? : prefs.getProperty(" sketchbook.path.four" )
5556 ? : (" ${System .getProperty(" user.home" )} /.processing" )
5657
57- // Replace slashes with backslashes on Windows
58- if (osName.contains(" win" )) {
59- sketchbook.replace(" /" , " \\ " )
60- }
61-
6258 // Apply the Java plugin to the Project
6359 project.plugins.apply (JavaPlugin ::class .java)
6460
You can’t perform that action at this time.
0 commit comments