소스 검색

Remove JVM arguments for OSX when running examples

David Berrios 7 년 전
부모
커밋
d1c654359d
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      jme3-examples/build.gradle

+ 0 - 4
jme3-examples/build.gradle

@@ -7,10 +7,6 @@ if (!hasProperty('mainClass')) {
 task run(dependsOn: 'build', type:JavaExec) {
     main = mainClass
     classpath = sourceSets.main.runtimeClasspath
-    if (System.properties['os.name'].toLowerCase().contains('mac')) {
-        jvmArgs "-XstartOnFirstThread"
-        jvmArgs "-Djava.awt.headless=true"
-    }
 
     if (System.properties['java.util.logging.config.file'] != null) {
         systemProperty "java.util.logging.config.file", System.properties['java.util.logging.config.file']