Skip to content

Commit

Permalink
Merge pull request #279 from SUSE/dependabot/maven/com.puppycrawl.too…
Browse files Browse the repository at this point in the history
…ls-checkstyle-8.29

Bump checkstyle from 8.18 to 8.29
  • Loading branch information
lucidd authored Feb 4, 2020
2 parents e9d4dc3 + 7e34538 commit ba9df39
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 12 deletions.
8 changes: 4 additions & 4 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
<module name="NewlineAtEndOfFile">
<property name="lineSeparator" value="lf"/>
</module>
<module name="LineLength">
<property name="max" value="120"/>
<property name="ignorePattern" value="import"/>
</module>
<module name="TreeWalker">
<module name="Regexp">
<property name="format" value="[ \t]+$"/>
<property name="illegalPattern" value="true"/>
<property name="message" value="Trailing whitespace"/>
</module>
<module name="LineLength">
<property name="max" value="120"/>
<property name="ignorePattern" value="import"/>
</module>
<module name="Indentation">
<property name="basicOffset" value="4"/>
<property name="lineWrappingIndentation" value="8"/>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.18</version>
<version>8.29</version>
</dependency>
</dependencies>
<configuration>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/suse/salt/netapi/calls/LocalCall.java
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ public void eventStreamClosed(int code, String phrase) {
});
}


/**
* Calls a execution module function on the given target and synchronously
* waits for the result. Authentication is done with the token therefore you
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/suse/salt/netapi/event/BeaconEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ public <R> R getData(Class<R> type) {
return GSON.fromJson(data, type);
}


/**
* Return event data as Map
* @return event data as map
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/suse/salt/netapi/event/EngineEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ public <R> R getData(Class<R> type) {
return GSON.fromJson(data, type);
}


/**
* Return event data as Map
* @return event data as map
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public <R> R getData(Class<R> type) {
return GSON.fromJson(data, type);
}


/**
* Return event data as Map
* @return event data as map
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/suse/salt/netapi/event/ResultEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public String getMinionId() {
return minionId;
}


/**
* Return event data as Map
* @return event data as map
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public String getJobId() {
return jobId;
}


/**
* @return the event data
*/
Expand Down

0 comments on commit ba9df39

Please sign in to comment.