Skip to content

Commit 1fb5e44

Browse files
committed
Fix Build
1 parent 275bc53 commit 1fb5e44

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

task-manager/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ android {
2424
}
2525
}
2626
compileOptions {
27-
sourceCompatibility = JavaVersion.VERSION_11
28-
targetCompatibility = JavaVersion.VERSION_11
27+
sourceCompatibility = JavaVersion.VERSION_17
28+
targetCompatibility = JavaVersion.VERSION_17
2929
}
3030
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEach {
3131
compilerOptions {

userData/src/main/java/com/dark/userdata/neuron_tree/NeuronTree.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,8 @@ class NeuronTree(internal val root: NeuronNode) {
135135
}
136136

137137
}
138+
139+
fun getDefaultBrainStructure(){
140+
val root = NeuronNode("root", NodeData("", NodeType.ROOT))
141+
val tree = NeuronTree(root)
142+
}

0 commit comments

Comments
 (0)