Skip to content

Commit 4fc0d5a

Browse files
committed
version update, tweaks to make JDK 8 doclint happy
1 parent 3320e51 commit 4fc0d5a

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

blitline-image-client-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.blitline</groupId>
66
<artifactId>blitline-java-parent</artifactId>
7-
<version>0.13.2</version>
7+
<version>0.13.3</version>
88
</parent>
99

1010
<artifactId>blitline-image-client-example</artifactId>

blitline-image-client-example/src/main/java/com/blitline/image/example/ExampleController.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void checkUrlProvider() {
4545
/**
4646
* Applies a canned function chain and saves the result with the {@code imageIdentifer} provided on the path.
4747
*
48-
* @param imageIdentifer
48+
* @param imageIdentifier
4949
* the identifier to use for the Blitline job
5050
* @param sourceImage
5151
* the URL of the source image; defaults to the stock image of boys at the harbor
@@ -54,8 +54,7 @@ public void checkUrlProvider() {
5454
* @return the results returned from dispatching the job
5555
*/
5656
@RequestMapping("/blitline/{imageIdentifier}")
57-
public BlitlinePostResults runJob(
58-
@PathVariable String imageIdentifier,
57+
public BlitlinePostResults runJob(@PathVariable String imageIdentifier,
5958
@RequestParam(defaultValue = BLITLINE_SAMPLE_IMAGE_URL) String sourceImage,
6059
@RequestParam(required = false) String postbackUrl
6160
) {

blitline-image-client-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.blitline</groupId>
66
<artifactId>blitline-java-parent</artifactId>
7-
<version>0.13.2</version>
7+
<version>0.13.3</version>
88
</parent>
99

1010
<artifactId>blitline-image-client-spring</artifactId>

blitline-image-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.blitline</groupId>
66
<artifactId>blitline-java-parent</artifactId>
7-
<version>0.13.2</version>
7+
<version>0.13.3</version>
88
</parent>
99

1010
<artifactId>blitline-image-client</artifactId>

blitline-image-client/src/main/java/com/blitline/image/BlitlineImageJob.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ public BlitlineImageJob identifyMetadataOnly() {
230230
* Build the job from the specified source, but only attempt to read image metadata about the original.
231231
* This method appends "-identify" to the {@code identifierPart} to form the image identifier.
232232
*
233+
* @param identifierPart the prefix to use for the image identifier
234+
*
233235
* @return a job specification that will only read and return metadata
234236
*/
235237
public BlitlineImageJob identifyMetadataOnly(String identifierPart) {

blitline-image-client/src/main/java/com/blitline/image/functions/SepiaTone.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public String getName() {
1515
* @param threshold
1616
* the sepia-tone threshold; 0.80 is a good default
1717
* @return {@literal this}
18-
* @see <a href="http://www.imagemagick.org/script/command-line-options.php#sepia-tone>the ImageMagick documentation</a>
18+
* @see <a href="http://www.imagemagick.org/script/command-line-options.php#sepia-tone">the ImageMagick documentation</a>
1919
*/
2020
public SepiaTone threshold(double threshold) {
2121
params.put("threshold", threshold);

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.blitline</groupId>
55
<artifactId>blitline-java-parent</artifactId>
6-
<version>0.13.2</version>
6+
<version>0.13.3</version>
77
<packaging>pom</packaging>
88
<name>Blitline Java client</name>
99
<description>Java client libraries for Blitline</description>

0 commit comments

Comments
 (0)