Skip to content

Commit

Permalink
Switched checkstyle plugin to error mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
Acarus committed Oct 5, 2016
1 parent 3f22dbb commit f43d862
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion checkstyle.xml
Expand Up @@ -18,7 +18,7 @@
<module name="Checker">
<property name="charset" value="UTF-8"/>

<property name="severity" value="warning"/>
<property name="severity" value="error"/>

<property name="fileExtensions" value="java, properties, xml"/>
<!-- Checks for whitespace -->
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -95,10 +95,10 @@ Copyright 2014-2016 CyberVision, Inc.
<metrics.version>3.1.0</metrics.version>

<findbugs.version>2.5.2</findbugs.version>
<checkstyle.version>2.17</checkstyle.version>
<checkstyle.version>2.12</checkstyle.version>
<checkstyle.tools.version>7.0</checkstyle.tools.version>
<checkstyle.exclusions>**/gen/**, **/target/**, **/org/kaaproject/kaa/schema/**,
**/org/kaaproject/kaa/common/dto/ctl/**</checkstyle.exclusions>
<checkstyle.exclusions>**/gen/**, ^target/generated-sources, **/org/kaaproject/kaa/schema/**,
**/org/kaaproject/kaa/common/dto/ctl/**, **/org/kaaproject/kaa/server/common/Version.java</checkstyle.exclusions>
<rat.version>0.10</rat.version>
<javassist.version>3.18.1-GA</javassist.version>
<signpost-core.version>1.2.1.2</signpost-core.version>
Expand Down
Expand Up @@ -111,7 +111,7 @@ public Message getCommand() {
/**
* Updates a request.
*/
public void updateRequest() {
public void updateRequest(ServerSync response) {
UUID channelUuid = getChannelUuid();
LOG.debug("[{}] Cleanup profile request", channelUuid);
request.setProfileSync(null);
Expand Down

0 comments on commit f43d862

Please sign in to comment.