Fixed test when JDK 8 is system default.

This commit is contained in:
Evgeny Gerashchenko
2014-03-14 22:10:32 +04:00
parent 74ff77eca4
commit 33e59103ec
+2 -2
View File
@@ -2,13 +2,13 @@ import sun.nio.cs.SingleByte
import sun.net.spi.nameservice.dns.DNSNameService
import javax.crypto.Cipher
import com.sun.java.browser.plugin2.DOM
import com.sun.crypto.provider.AESCipher
import com.sun.crypto.provider.SunJCE
fun box(): String {
val a = SingleByte() // charsets.jar
val c = DNSNameService() // dnsns.ajr
val e : Cipher? = null // jce.jar
val f : AESCipher? = null // sunjce_provider.jar
val f : SunJCE? = null // sunjce_provider.jar
val j : DOM? = null // plugin.jar
return "OK"
}