Skip to content

Commit 7775d01

Browse files
committed
Identified Bugs
1 parent 80c48f2 commit 7775d01

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

java/gradle/src/main/kotlin/LibrariesTask.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import java.util.jar.JarFile
1212

1313
abstract class LibrariesTask : DefaultTask() {
1414

15+
// TODO: Allow this directory to not exist
1516
@InputDirectory
1617
val librariesDirectory: DirectoryProperty = project.objects.directoryProperty()
1718

java/gradle/src/main/kotlin/ProcessingPlugin.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)