Skip to content

Commit

Permalink
new version 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Burkhardt committed Oct 5, 2010
1 parent af63d41 commit 37d26fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.project
bin
build
*.orig
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project name="JSR305CheckstylePlugin" default="jar" basedir=".">

<property name="version" value="0.3.4" />
<property name="version" value="0.3.5" />
<property name="src" value="src" />
<property name="build" value="build" />
<property name="classes" value="${build}/classes" />
Expand Down
4 changes: 2 additions & 2 deletions src/de/bjrke/checkstyle/jsr305/Jsr305Annotations.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright (C) 2008 Marcus Thiesen (initial version)
* Copyright (C) 2008-2009 Jan Burkhardt (maintainer)
*
* thanks to Mattias Nissler, Thorsten Ehlers, Fabian Löwner for contributions
* thanks to Mattias Nissler, Thorsten Ehlers, Fabian Loewner for contributions
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -45,7 +45,7 @@ public class Jsr305Annotations extends Check {
private String[] _packages = new String[0];
private String[] _excludePackages = new String[0];
private String[] _allowedAnnotations = { "Nonnull", "Nullable", "SuppressWarnings" };
private String[] _allowedMethodAnnotations = { "CheckReturnValue", "CheckForNull", "Override" };
private String[] _allowedMethodAnnotations = { "Nonnull", "CheckForNull", "Override" };

private boolean _checkAnnotation;

Expand Down
2 changes: 1 addition & 1 deletion src/de/bjrke/checkstyle/jsr305/checkstyle-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<description>Define allowed Annotations, default is "Nonnull,Nullable,SuppressWarnings".</description>
</property-metadata>
<property-metadata name="allowedMethodAnnotations" datatype="String">
<description>Define allowed Annotations, default is "CheckReturnValue,CheckForNull,Override".</description>
<description>Define allowed Annotations, default is "Nonnull,CheckForNull,Override".</description>
</property-metadata>
</rule-metadata>
</rule-group-metadata>
Expand Down

0 comments on commit 37d26fa

Please sign in to comment.