Don't always run code in Ant task tests
But when running code, do it via <java> task, not via custom testing code. Most of the time the compiled code need not be runned, because it's irrelevant to the Ant task itself
This commit is contained in:
@@ -8,7 +8,7 @@ import sun.nio.ByteBuffered
|
||||
|
||||
fun main(args : Array<String>) {
|
||||
val a = Big5() // charsets.jar
|
||||
val c = DNSNameService() // dnsns.ajr
|
||||
val c = DNSNameService() // dnsns.jar
|
||||
val e : Cipher? = null // jce.jar
|
||||
val f : SunJCE? = null // sunjce_provider.jar
|
||||
val j : ByteBuffered? = null // rt.jar
|
||||
|
||||
Reference in New Issue
Block a user