We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 275bc53 commit 1fb5e44Copy full SHA for 1fb5e44
2 files changed
task-manager/build.gradle.kts
@@ -24,8 +24,8 @@ android {
24
}
25
26
compileOptions {
27
- sourceCompatibility = JavaVersion.VERSION_11
28
- targetCompatibility = JavaVersion.VERSION_11
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
29
30
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEach {
31
compilerOptions {
userData/src/main/java/com/dark/userdata/neuron_tree/NeuronTree.kt
@@ -135,3 +135,8 @@ class NeuronTree(internal val root: NeuronNode) {
135
136
137
138
+
139
+fun getDefaultBrainStructure(){
140
+ val root = NeuronNode("root", NodeData("", NodeType.ROOT))
141
+ val tree = NeuronTree(root)
142
+}
0 commit comments