Skip to content

Commit f0f54cc

Browse files
committed
sq fixes
1 parent 375acb4 commit f0f54cc

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

build.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ dependencies {
5656
testImplementation("org.junit.jupiter", "junit-jupiter-engine", "5.11.4")
5757
testImplementation("org.mockito", "mockito-core", "5.21.0")
5858

59-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:6.0.2")
59+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.11.4")
6060
}
6161

6262
tasks.withType<JavaCompile> {
@@ -71,10 +71,6 @@ java {
7171
withJavadocJar()
7272
}
7373

74-
tasks.withType<JavaCompile> {
75-
options.encoding = "UTF-8"
76-
}
77-
7874
tasks.test {
7975
useJUnitPlatform()
8076

src/test/java/com/github/_1c_syntax/bsl/parser/testing/demo/DemoLexer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
*/
2222
package com.github._1c_syntax.bsl.parser.testing.demo;
2323

24-
import org.antlr.v4.parse.BlockSetTransformer;
2524
import org.antlr.v4.runtime.CharStream;
2625
import org.antlr.v4.runtime.Lexer;
2726
import org.antlr.v4.runtime.Vocabulary;
@@ -31,7 +30,8 @@
3130
@NullMarked
3231
public class DemoLexer extends Lexer {
3332

34-
public static final String[] tokenNames = new String[]{"token1", "token2"};;
33+
public static final String[] tokenNames = new String[]{"token1", "token2"};
34+
;
3535
public static final Vocabulary VOCABULARY = new VocabularyImpl(new String[0], tokenNames);
3636

3737
@Override

0 commit comments

Comments
 (0)