Skip to content

Commit 9a459f8

Browse files
committed
Prepare for next development iteration
1 parent b70fe77 commit 9a459f8

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ POM_DEVELOPER_ID=KotlinCrypto
3030
POM_DEVELOPER_NAME=Kotlin Crypto
3131
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3232

33-
VERSION_NAME=0.1.0
33+
VERSION_NAME=0.2.0-SNAPSHOT
3434
# 0.1.0-alpha01 = 00 01 00 11
3535
# 0.1.0-beta01 = 00 01 00 21
3636
# 0.1.0-rc01 = 00 01 00 31
3737
# 0.1.0 = 00 01 00 99
3838
# 1.1.0 = 01 01 00 99
39-
VERSION_CODE=00010011
39+
VERSION_CODE=00020011

library/error/src/jvmMain/kotlin/org/kotlincrypto/error/JvmExceptions.kt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
package org.kotlincrypto.error
1919

20-
import java.security.SecureRandom
21-
2220
public actual typealias InvalidParameterException = java.security.InvalidParameterException
2321
public actual typealias GeneralSecurityException = java.security.GeneralSecurityException
2422
public actual typealias BadPaddingException = javax.crypto.BadPaddingException
@@ -29,7 +27,3 @@ public actual typealias IllegalBlockSizeException = javax.crypto.IllegalBlockSiz
2927
public actual typealias KeyException = java.security.KeyException
3028
public actual typealias InvalidKeyException = java.security.InvalidKeyException
3129
public actual typealias ShortBufferException = javax.crypto.ShortBufferException
32-
33-
private fun SecureRandom.lll() {
34-
35-
}

0 commit comments

Comments
 (0)