Skip to content

Commit 5bf5f58

Browse files
committed
new release 2.1.5
1 parent 88e682b commit 5bf5f58

28 files changed

+44
-44
lines changed

build-common.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## ${basedir} is a child of checker-framework/, e.g. checker-framework/checker
55

66
# The Checker Framework version number
7-
build.version = 2.1.4
7+
build.version = 2.1.5
88

99
# The location of the OpenJDK distribution to use;
1010
# must be a version that supports type annotations (JSR 308)

checker/examples/GradleExamples/GradleJava7Example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ configurations {
2929
}
3030

3131
dependencies {
32-
ext.checkerFrameworkVersion = '2.1.4'
32+
ext.checkerFrameworkVersion = '2.1.5'
3333
ext.jdkVersion = JavaVersion.current().isJava7() ? 'jdk7' : 'jdk8'
3434
checkerFrameworkAnnotatedJDK "org.checkerframework:${jdkVersion}:${checkerFrameworkVersion}"
3535

checker/examples/MavenExample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- These properties will be set by the Maven Dependency plugin -->
1616
<!-- Change to jdk7 if using Java 7 -->
1717
<annotatedJdk>${org.checkerframework:jdk8:jar}</annotatedJdk>
18-
<checkerFrameworkVersion><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></checkerFrameworkVersion>
18+
<checkerFrameworkVersion><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></checkerFrameworkVersion>
1919
<!-- The type annotations compiler is required if using Java 7. -->
2020
<!-- Uncomment the following line if using Java 7. -->
2121
<!--<typeAnnotationsJavac>${org.checkerframework:compiler:jar}</typeAnnotationsJavac>-->

checker/manual/checker-framework-quick-start.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h1>Checker Framework quick start guide</h1>
2222
<p>
2323
To <a href="http://types.cs.washington.edu/checker-framework/current/checker-framework-manual.html#installation">install the Checker Framework</a>, download and unzip
2424
the Checker Framework distribution:
25-
<a href="current/checker-framework-2.1.4.zip"><!-- checker-framework-zip-version -->checker-framework-2.1.4.zip<!-- /checker-framework-zip-version --></a>.<br/>
25+
<a href="current/checker-framework-2.1.5.zip"><!-- checker-framework-zip-version -->checker-framework-2.1.5.zip<!-- /checker-framework-zip-version --></a>.<br/>
2626
Or, the
2727
<a href="http://eisop.uwaterloo.ca/live/">Checker Framework Live Demo</a>
2828
webpage lets you try the Checker Framework without installing it.

checker/manual/checker-framework-webpage.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ <h1>The Checker Framework</h1>
3333

3434
<ul>
3535
<li>
36-
Download: <a href="current/checker-framework-2.1.4.zip"><!-- checker-framework-zip-version -->checker-framework-2.1.4.zip<!-- /checker-framework-zip-version --></a>
37-
(<!-- checker-framework-date -->3 Oct 2016<!-- /checker-framework-date -->);
36+
Download: <a href="current/checker-framework-2.1.5.zip"><!-- checker-framework-zip-version -->checker-framework-2.1.5.zip<!-- /checker-framework-zip-version --></a>
37+
(<!-- checker-framework-date -->2 Nov 2016<!-- /checker-framework-date -->);
3838
includes source, platform-independent binary, tests, and documentation.<br/>
3939
Then, see the <a
4040
href="current/checker-framework-manual.html#installation"><b>installation
@@ -100,7 +100,7 @@ <h1>The Checker Framework</h1>
100100
the <code>.class</code> file. The tools support both Java 5
101101
declaration annotations and Java 8 type annotations.
102102
<ul>
103-
<li><a href="../annotation-file-utilities/current/annotation-tools-3.6.34.zip"><!-- annotation-tools-zip-version -->annotation-tools-3.6.34.zip<!-- /annotation-tools-zip-version --></a> (<!-- afu-date -->03 Oct 2016<!-- /afu-date -->)
103+
<li><a href="../annotation-file-utilities/current/annotation-tools-3.6.35.zip"><!-- annotation-tools-zip-version -->annotation-tools-3.6.35.zip<!-- /annotation-tools-zip-version --></a> (<!-- afu-date -->02 Nov 2016<!-- /afu-date -->)
104104
</li>
105105
<li><a href="https://github.com/typetools/annotation-tools/">source code repository</a>
106106
</li>
@@ -222,7 +222,7 @@ <h3 id="bugs">Bug reports</h3>
222222
<hr />
223223

224224
<p>
225-
Last updated: <!-- checker-framework-date -->3 Oct 2016<!-- /checker-framework-date -->
225+
Last updated: <!-- checker-framework-date -->2 Nov 2016<!-- /checker-framework-date -->
226226
</p>
227227

228228
</body>

checker/manual/external-tools.tex

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ \section{Javac compiler\label{javac-installation}}
4747
\item
4848
Option 1:
4949
Add directory
50-
\code{.../checker-framework-2.1.4/checker/bin} to your path, \emph{before} any other
50+
\code{.../checker-framework-2.1.5/checker/bin} to your path, \emph{before} any other
5151
directory that contains a \<javac> executable.
5252

5353
If you are
5454
using the bash shell, a way to do this is to add the following to your
5555
\verb|~/.profile| (or alternately \verb|~/.bash_profle| or \verb|~/.bashrc|) file:
5656
\begin{Verbatim}
57-
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.4
57+
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.5
5858
export PATH=${CHECKERFRAMEWORK}/checker/bin:${PATH}
5959
\end{Verbatim}
6060
then log out and back in to ensure that the environment variable
@@ -79,15 +79,15 @@ \section{Javac compiler\label{javac-installation}}
7979
\verb|~/.bashrc| file:
8080
% No Windows example because this doesn't work under Windows.
8181
\begin{Verbatim}
82-
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.4
82+
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.5
8383
alias javacheck='$CHECKERFRAMEWORK/checker/bin/javac'
8484
\end{Verbatim}
8585

8686
If you are using a Java 7 JVM, then add command-line arguments to so
8787
indicate:
8888

8989
\begin{Verbatim}
90-
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.4
90+
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.5
9191
alias javacheck='$CHECKERFRAMEWORK/checker/bin/javac -source 7 -target 7'
9292
\end{Verbatim}
9393

@@ -113,11 +113,11 @@ \section{Javac compiler\label{javac-installation}}
113113

114114
\begin{Verbatim}
115115
# Unix
116-
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.4
116+
export CHECKERFRAMEWORK=${HOME}/checker-framework-2.1.5
117117
alias javacheck='java -jar $CHECKERFRAMEWORK/checker/dist/checker.jar'
118118
119119
# Windows
120-
set CHECKERFRAMEWORK = C:\Program Files\checker-framework-2.1.4\
120+
set CHECKERFRAMEWORK = C:\Program Files\checker-framework-2.1.5\
121121
doskey javacheck=java -jar %CHECKERFRAMEWORK%\checker\dist\checker.jar $*
122122
\end{Verbatim}
123123

@@ -139,7 +139,7 @@ \section{Javac compiler\label{javac-installation}}
139139
The output should be:
140140

141141
\begin{Verbatim}
142-
javac 1.8.0-jsr308-2.1.4
142+
javac 1.8.0-jsr308-2.1.5
143143
\end{Verbatim}
144144

145145

@@ -512,7 +512,7 @@ \section{Gradle\label{gradle}}
512512
\begin{Verbatim}
513513
dependencies {
514514
... existing dependencies...
515-
ext.checkerFrameworkVersion = '2.1.4'
515+
ext.checkerFrameworkVersion = '2.1.5'
516516
ext.jdkVersion = JavaVersion.current().isJava7() ? 'jdk7' : 'jdk8'
517517
checkerFrameworkAnnotatedJDK "org.checkerframework:${jdkVersion}:${checkerFrameworkVersion}"
518518
@@ -594,7 +594,7 @@ \section{Android plugin for Gradle\label{android-gradle}}
594594
\begin{Verbatim}
595595
dependencies {
596596
... existing dependencies...
597-
ext.checkerFrameworkVersion = '2.1.4'
597+
ext.checkerFrameworkVersion = '2.1.5'
598598
ext.jdkVersion = JavaVersion.current().isJava7() ? 'jdk7' : 'jdk8'
599599
checkerFrameworkAnnotatedJDK "org.checkerframework:${jdkVersion}:${checkerFrameworkVersion}"
600600
checkerFrameworkJavac "org.checkerframework:compiler:${checkerFrameworkVersion}"

checker/manual/introduction.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ \section{Installation\label{installation}}
205205
%BEGIN LATEX
206206
\\
207207
%END LATEX
208-
\url{http://types.cs.washington.edu/checker-framework/current/checker-framework-2.1.4.zip}
208+
\url{http://types.cs.washington.edu/checker-framework/current/checker-framework-2.1.5.zip}
209209

210210
\item
211211
Unzip it to create a \code{checker-framework} directory.

checker/manual/manual.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
\title{The Checker Framework Manual: \\ Custom pluggable types for Java}
66
\author{\url{http://checkerframework.org/}}
7-
\newcommand{\ReleaseVersion}{2.1.4}
8-
\newcommand{\ReleaseInfo}{2.1.4 (3 Oct 2016)}
7+
\newcommand{\ReleaseVersion}{2.1.5}
8+
\newcommand{\ReleaseInfo}{2.1.5 (2 Nov 2016)}
99
\date{Version \ReleaseInfo{}}
1010

1111
\begin{document}

maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
1111
See checker-framework/binary/poms/updateVersion.sh -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<build>
1515
<plugins>

maven-plugin/poms/checkerCompatQualPom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- Note: It's important that this is the first <version/> element to appear in this document (by line)
1111
Because there is a simple logic in the release script to replace the version number of pom files -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>

maven-plugin/poms/checkerPom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
1111
See checker-framework/bin/poms/updateVersion.sh -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>

maven-plugin/poms/checkerQualPom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- Note: It's important that this is the first <version/> element to appear in this document (by line)
1111
Because there is a simple logic in the release script to replace the version number of pom files -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>

maven-plugin/poms/compilerPom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
1111
See checker-framework/bin/poms/updateVersion.sh -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>

maven-plugin/poms/dataflowPom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
1111
See checker-framework/bin/poms/updateVersion.sh -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>org.checkerframework</groupId>
2424
<artifactId>javacutil</artifactId>
25-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
25+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
2626
<type>jar</type>
2727
</dependency>
2828
</dependencies>

maven-plugin/poms/javacutilPom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
1111
See checker-framework/bin/poms/updateVersion.sh -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>

maven-plugin/poms/jdk7Pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
1111
See checker-framework/bin/poms/updateVersion.sh -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>

maven-plugin/poms/jdk8Pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
1111
See checker-framework/bin/poms/updateVersion.sh -->
12-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
12+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
1313

1414
<distributionManagement>
1515
<repository>

maven-plugin/release/checkerCompatQualReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
3434
See checker-framework/bin/poms/updateVersion.sh -->
35-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
35+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3636

3737
<scm>
3838
<url>https://github.com/typetools/checker-framework.git</url>

maven-plugin/release/checkerQualReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
3434
See checker-framework/bin/poms/updateVersion.sh -->
35-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
35+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3636

3737
<scm>
3838
<url>https://github.com/typetools/checker-framework.git</url>

maven-plugin/release/checkerReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
3030
See checker-framework/bin/poms/updateVersion.sh -->
31-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
31+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3232

3333
<scm>
3434
<url>https://github.com/typetools/checker-framework.git</url>

maven-plugin/release/compilerReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
2626
See checker-framework/bin/poms/updateVersion.sh -->
27-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
27+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
2828

2929
<scm>
3030
<url>https://bitbucket.org/typetools/jsr308-langtools/</url>

maven-plugin/release/dataflowReleasePom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
<dependency>
3232
<groupId>org.checkerframework</groupId>
3333
<artifactId>javacutil</artifactId>
34-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
34+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3535
<type>jar</type>
3636
</dependency>
3737
</dependencies>
3838

3939
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
4040
See checker-framework/bin/poms/updateVersion.sh -->
41-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
41+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
4242

4343
<scm>
4444
<url>https://github.com/typetools/checker-framework.git</url>

maven-plugin/release/javacutilReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
3131
See checker-framework/bin/poms/updateVersion.sh -->
32-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
32+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3333

3434
<scm>
3535
<url>https://github.com/typetools/checker-framework.git</url>

maven-plugin/release/jdk7ReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
2828
See checker-framework/bin/poms/updateVersion.sh -->
29-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
29+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3030

3131
<scm>
3232
<url>https://github.com/typetools/checker-framework.git</url>

maven-plugin/release/jdk8ReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
2828
See checker-framework/bin/poms/updateVersion.sh -->
29-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
29+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3030

3131
<scm>
3232
<url>https://github.com/typetools/checker-framework.git</url>

maven-plugin/release/mavenPluginReleasePom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<!-- The comments in the version number are used to do a text substitution. Don't remove them.
3434
See checker-framework/bin/poms/updateVersion.sh -->
35-
<version><!-- checker-framework-version -->2.1.4<!-- /checker-framework-version --></version>
35+
<version><!-- checker-framework-version -->2.1.5<!-- /checker-framework-version --></version>
3636

3737
<scm>
3838
<url>https://github.com/typetools/checker-framework.git</url>

tutorial/tests/testdemo/check-tainting.0.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Deleting directory /Users/smillst/src/jsr308/checker-framework/tutorial/eclipse-
55
check-tainting:
66
Created dir: /Users/smillst/src/jsr308/checker-framework/tutorial/eclipse-projects/personalblog-demo/bin
77
Compiling 2 source files to /Users/smillst/src/jsr308/checker-framework/tutorial/eclipse-projects/personalblog-demo/bin
8-
javac 1.8.0-jsr308-2.1.4
8+
javac 1.8.0-jsr308-2.1.5
99
/home/mernst/research/types/checker-framework/tutorial/eclipse-projects/personalblog-demo/src/net/eyde/personalblog/service/PersonalBlogService.java:174: error: [argument.type.incompatible] incompatible types in argument.
1010
+ "%' order by post.created desc");
1111
^

tutorial/webpages/security-error-cmd.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h4>1. Run the Tainting Checker &mdash; 1 error found</h4>
108108
check-tainting:
109109
[mkdir] Created dir: .../personalblog-demo/bin
110110
[jsr308.javac] Compiling 2 source files to .../personalblog-demo/bin
111-
[jsr308.javac] javac 1.8.0-jsr308-2.1.4
111+
[jsr308.javac] javac 1.8.0-jsr308-2.1.5
112112
[jsr308.javac] .../personalblog-demo/src/net/eyde/personalblog/service/PersonalBlogService.java:175: error: incompatible types in argument.
113113
[jsr308.javac] "where post.category like '%", category,
114114
[jsr308.javac] ^
@@ -157,7 +157,7 @@ <h4>3. Re-run the Tainting Checker &mdash; a new error is found</h4>
157157
check-tainting:
158158
[mkdir] Created dir: .../personalblog-demo/bin
159159
[jsr308.javac] Compiling 2 source files to .../personalblog-demo/bin
160-
[jsr308.javac] javac 1.8.0-jsr308-2.1.4
160+
[jsr308.javac] javac 1.8.0-jsr308-2.1.5
161161
[jsr308.javac] .../personalblog-demo/src/net/eyde/personalblog/struts/action/ReadAction.java:58: error: incompatible types in argument.
162162
[jsr308.javac] pblog.getPostsByCategory(reqCategory));
163163
[jsr308.javac] ^
@@ -200,7 +200,7 @@ <h4>5. Re-run the Tainting Checker &mdash; no errors</h4>
200200
check-tainting:
201201
[mkdir] Created dir: .../personalblog-demo/bin
202202
[jsr308.javac] Compiling 2 source files to .../personalblog-demo/bin
203-
[jsr308.javac] javac 1.8.0-jsr308-2.1.4
203+
[jsr308.javac] javac 1.8.0-jsr308-2.1.5
204204

205205
BUILD SUCCESSFUL
206206
Total time: 2 seconds

0 commit comments

Comments
 (0)