Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump checkstyle from 8.26 to 8.27 #5694

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ dependencies {
testCompile "org.testfx:testfx-junit5:4.0.17-alpha-SNAPSHOT"
testCompile "org.hamcrest:hamcrest-library:2.2"

checkstyle 'com.puppycrawl.tools:checkstyle:8.26'
checkstyle 'com.puppycrawl.tools:checkstyle:8.27'
xjc group: 'org.glassfish.jaxb', name: 'jaxb-xjc', version: '2.3.2'
jython 'org.python:jython-standalone:2.7.1'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ public BracketedPattern() {
this.pattern = null;
}

/**
* @param bibentry
*/
public BracketedPattern(String pattern) {
this.pattern = pattern;
}
Expand Down
5 changes: 0 additions & 5 deletions src/main/java/org/jabref/logic/bst/BibtexTextPrefix.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,9 @@ private BibtexTextPrefix() {
}

/**
*
* @param numOfChars
* @param toPrefix
* @param warn may-be-null
* @return
*/
public static String textPrefix(int inNumOfChars, String toPrefix, Warn warn) {

int numOfChars = inNumOfChars;
StringBuilder sb = new StringBuilder();

Expand Down
5 changes: 0 additions & 5 deletions src/main/java/org/jabref/logic/openoffice/OOBibStyle.java
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ public boolean isValid() {
* Parse a line providing bibliography structure information for an entry type.
*
* @param line The string containing the structure description.
* @throws IOException
*/
private void handleStructureLine(String line) {
int index = line.indexOf('=');
Expand All @@ -369,7 +368,6 @@ private void handleStructureLine(String line) {
* Parse a line providing a property name and value.
*
* @param line The line containing the formatter names.
* @throws IOException
*/
private void handlePropertiesLine(String line, Map<String, Object> map) {
int index = line.indexOf('=');
Expand All @@ -393,9 +391,6 @@ private void handlePropertiesLine(String line, Map<String, Object> map) {

/**
* Parse a line providing a journal name for which this style is valid.
*
* @param line
* @throws IOException
*/
private void handleJournalsLine(String line) {
if (!line.trim().isEmpty()) {
Expand Down