Skip to content

Commit 3261e99

Browse files
committed
Update to kotlin 1.2.41
1 parent 9ed3a65 commit 3261e99

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![CodeCov](https://codecov.io/github/HPInc/jipp/coverage.svg?branch=master)](https://codecov.io/github/HPInc/jipp)
33
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.hp.jipp/jipp-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.hp.jipp/jipp-core)
44
[![Dokka](https://img.shields.io/badge/docs-dokka-brightgreen.svg)](https://hpinc.github.io/jipp/javadoc/index.html)
5-
[![Kotlin](https://img.shields.io/badge/Kotlin-1.2.40-orange.svg)](https://kotlinlang.org/)
5+
[![Kotlin](https://img.shields.io/badge/Kotlin-1.2.41-orange.svg)](https://kotlinlang.org/)
66
[![ktlint](https://img.shields.io/badge/code%20style-%E2%9D%A4-FF4081.svg)](https://ktlint.github.io/)
77

88
# JIPP: A Java-compatible IPP library

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
allprojects {
2-
ext.kotlin_version = '1.2.40'
2+
ext.kotlin_version = '1.2.41'
33
ext.dokka_version = '0.9.16'
44
ext.ktlint_version = '0.22.0'
55

jipp-core/src/test/java/com/hp/jipp/model/BinaryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void cycleBinaries() throws Exception {
4747
Object printerAlert = packet.getValue(Tag.printerAttributes, Types.printerAlert);
4848

4949
// TODO: inputTray and printerAlert can be encoded with slight differences (sometimes with
50-
// terminating ;) causing a binary mismatch. Not sure how to deal with this and still have a valid test
50+
// terminating ";") causing a binary mismatch. Not sure how to deal with this and still have a valid test
5151
if (inputTray == null && printerAlert == null) {
5252
assertArrayEquals(bytes, Cycler.toBytes(packet));
5353
}

0 commit comments

Comments
 (0)