From: yukihane Date: Sun, 14 Aug 2011 16:37:42 +0000 (+0900) Subject: 実行するのに必要な実行時依存ライブラリ追加 X-Git-Tag: rel20110815_ver1.6.0~1^2~1 X-Git-Url: http://git.sourceforge.jp/view?p=coroid%2Finqubus.git;a=commitdiff_plain;h=8e2161574c05eff7696f495cbf415897715ad49a;ds=sidebyside 実行するのに必要な実行時依存ライブラリ追加 --- diff --git a/frontend/nbproject/project.properties b/frontend/nbproject/project.properties index 1ba01dc..be21f64 100644 --- a/frontend/nbproject/project.properties +++ b/frontend/nbproject/project.properties @@ -75,7 +75,6 @@ main.class=saccubus.Saccubus manifest.file=manifest.mf meta.inf.dir=${src.dir}/META-INF mkdist.disabled=false -no.dependencies=true platform.active=default_platform project.MediaInfoWrapper=../../MediaInfoWrapper project.NicoBrowser=../../NicoBrowser @@ -83,7 +82,9 @@ reference.MediaInfoWrapper.jar=${project.MediaInfoWrapper}/dist/MediaInfoWrapper reference.NicoBrowser.jar=${project.NicoBrowser}/dist/NicoBrowser.jar run.classpath=\ ${javac.classpath}:\ - ${build.classes.dir} + ${build.classes.dir}:\ + ${libs.Rome.classpath}:\ + ${libs.groovy-all.classpath} # Space-separated list of JVM arguments used when running the project # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value # or test-sys-prop.name=value to set system properties for unit tests): diff --git a/frontend/src/saccubus/net/VideoInfo.java b/frontend/src/saccubus/net/VideoInfo.java index 722755b..29083e3 100644 --- a/frontend/src/saccubus/net/VideoInfo.java +++ b/frontend/src/saccubus/net/VideoInfo.java @@ -76,9 +76,9 @@ public class VideoInfo { private final String force184; public OfficialOption(String threadKey, String force184) { - if (threadKey == null || force184 == null) { - throw new IllegalArgumentException("公式動画用キーが不正です"); - } +// if (threadKey == null || force184 == null) { +// throw new IllegalArgumentException("公式動画用キーが不正です"); +// } this.threadKey = threadKey; this.force184 = force184; }