File tree 4 files changed +35
-0
lines changed
src/main/java/org/togetherjava/tjbot/formatter
4 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ plugins {
3
3
}
4
4
5
5
dependencies {
6
+ implementation ' com.google.code.findbugs:jsr305:3.0.2'
7
+ implementation project(' :utils' )
8
+
6
9
testImplementation ' org.junit.jupiter:junit-jupiter-api:5.9.0'
7
10
testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.9.0'
8
11
}
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Core package for the formatter project, which is able to format code snippets. See
3
+ * {@link org.togetherjava.tjbot.formatter.Formatter} as entry point.
4
+ */
5
+ @ MethodsReturnNonnullByDefault
6
+ @ ParametersAreNonnullByDefault
7
+ package org .togetherjava .tjbot .formatter ;
8
+
9
+ import org .togetherjava .tjbot .annotations .MethodsReturnNonnullByDefault ;
10
+
11
+ import javax .annotation .ParametersAreNonnullByDefault ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Deals with tokenizing code snippets. See {@link org.togetherjava.tjbot.formatter.tokenizer.Lexer}
3
+ * as entry point.
4
+ */
5
+ @ MethodsReturnNonnullByDefault
6
+ @ ParametersAreNonnullByDefault
7
+ package org .togetherjava .tjbot .formatter .tokenizer ;
8
+
9
+ import org .togetherjava .tjbot .annotations .MethodsReturnNonnullByDefault ;
10
+
11
+ import javax .annotation .ParametersAreNonnullByDefault ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Contains utility used by the formatter.
3
+ */
4
+ @ MethodsReturnNonnullByDefault
5
+ @ ParametersAreNonnullByDefault
6
+ package org .togetherjava .tjbot .formatter .util ;
7
+
8
+ import org .togetherjava .tjbot .annotations .MethodsReturnNonnullByDefault ;
9
+
10
+ import javax .annotation .ParametersAreNonnullByDefault ;
You can’t perform that action at this time.
0 commit comments