Fix classpath test for openjdk

This commit is contained in:
Stanislav Erokhin
2014-12-01 18:32:06 +03:00
parent 5d2792d68b
commit b2774a9cd0
6 changed files with 35 additions and 35 deletions
@@ -1,14 +1,14 @@
import sun.nio.cs.SingleByte
import sun.nio.cs.ext.Big5
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
import sun.nio.ByteBuffered
fun box() : String {
val a = SingleByte() // charsets.jar
fun box(): String {
val a = Big5() // charsets.jar
val c = DNSNameService() // dnsns.ajr
val e : Cipher? = null // jce.jar
val f : AESCipher? = null // sunjce_provider.jar
val j : DOM? = null // plugin.jar
val f : SunJCE? = null // sunjce_provider.jar
val j : ByteBuffered? = null // rt.jar
return "OK"
}