Skip to content

Commit

Permalink
Remove whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladislav0Art committed Feb 16, 2024
1 parent 79c723e commit c12f2db
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
5 changes: 2 additions & 3 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@


fun properties(key: String) = project.findProperty(key).toString()

plugins {
Expand Down Expand Up @@ -36,11 +37,9 @@ tasks {
untilBuild.set(properties("pluginUntilBuild"))
}
}


tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}
}
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
package org.jetbrains.research.testspark.core.generation

val importPattern =
Regex(
pattern = "^import\\s+(static\\s)?((?:[a-zA-Z_]\\w*\\.)*[a-zA-Z_](?:\\w*\\.?)*)(?:\\.\\*)?;",
options = setOf(RegexOption.MULTILINE),
)

val importPattern = Regex(
pattern = "^import\\s+(static\\s)?((?:[a-zA-Z_]\\w*\\.)*[a-zA-Z_](?:\\w*\\.?)*)(?:\\.\\*)?;",
options = setOf(RegexOption.MULTILINE),
)
val packagePattern =
Regex(
pattern = "^package\\s+((?:[a-zA-Z_]\\w*\\.)*[a-zA-Z_](?:\\w*\\.?)*)(?:\\.\\*)?;",
options = setOf(RegexOption.MULTILINE),
)

val packagePattern = Regex(
pattern = "^package\\s+((?:[a-zA-Z_]\\w*\\.)*[a-zA-Z_](?:\\w*\\.?)*)(?:\\.\\*)?;",
options = setOf(RegexOption.MULTILINE),
)

val runWithPattern = Regex(
pattern = "@RunWith\\([^)]*\\)",
options = setOf(RegexOption.MULTILINE),
)
val runWithPattern =
Regex(
pattern = "@RunWith\\([^)]*\\)",
options = setOf(RegexOption.MULTILINE),
)

0 comments on commit c12f2db

Please sign in to comment.