Skip to content

Commit ede17d3

Browse files
committed
⬆️ bump kt 1.2.40 eap 51
1 parent 0d6e39c commit ede17d3

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.idea/modules/kotlin-unsigned.iml

-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
55

66
buildscript {
77

8-
ext.kotlinVersion = '1.2.31'
8+
ext.kotlinVersion = '1.2.40-eap-51'
99

1010
repositories {
1111
jcenter() // shadow

src/main/kotlin/unsigned/java_1_7/long.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ fun Long.toString(radix: Int): String {
5353

5454
while (i <= -_radix) {
5555
buf[charPos--] = digits[(-(i % _radix)).toInt()]
56-
i = i / _radix
56+
i /= _radix
5757
}
5858
buf[charPos] = digits[(-i).toInt()]
5959

0 commit comments

Comments
 (0)