Skip to content

Commit dee5784

Browse files
authored
Added missing package-infos (#612)
1 parent f91953e commit dee5784

File tree

4 files changed

+35
-0
lines changed

4 files changed

+35
-0
lines changed

formatter/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ plugins {
33
}
44

55
dependencies {
6+
implementation 'com.google.code.findbugs:jsr305:3.0.2'
7+
implementation project(':utils')
8+
69
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
710
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
811
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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;

0 commit comments

Comments
 (0)