- removed old jar's from buildpath

git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@6235 ebf7c1c2-ba36-0410-9fe8-c592906822b4
This commit is contained in:
Greeny 2009-06-15 11:03:04 +00:00
parent 90782ef2c6
commit f7d01dea8e
2 changed files with 9 additions and 7 deletions

View File

@ -5,7 +5,7 @@
<property name="dist" value="dist" />
<property name="res" value="ressourcen" />
<property name="keystore" value="G:\jDownloader.keystore" />
<property name="class-path" value="libs/JUnique.jar libs/JDGUI.jar libs/JDHttp.jar libs/JAntiCaptcha.jar libs/JDUtils.jar libs/balloontip.jar libs/BrowserLauncher2.jar libs/clink170.jar libs/cobra.jar libs/hsqldb.jar libs/htmlcleaner2_0.jar libs/irclib.jar libs/jl1.0.jar libs/js.jar libs/looks.jar libs/mail.jar libs/miglayout.jar libs/registry.jar libs/savemytube.jar libs/substance-swingx.jar libs/substance.jar libs/svnkit.jar libs/swingworker.jar libs/swingx.jar libs/synthetica.jar libs/syntheticaAddons.jar libs/syntheticaBlackMoon.jar libs/syntheticaBlackStar.jar libs/syntheticaBlueIce.jar libs/syntheticaBlueMoon.jar libs/syntheticaOrangeMetallic.jar libs/syntheticaSilverMoon.jar libs/syntheticaSimple2D.jar libs/syntheticaSkyMetallic.jar libs/syntheticaWhiteVision.jar" />
<property name="class-path" value="libs/JUnique.jar libs/JDGUI.jar libs/JDHttp.jar libs/JAntiCaptcha.jar libs/JDUtils.jar libs/BrowserLauncher2.jar libs/clink170.jar libs/cobra.jar libs/hsqldb.jar libs/htmlcleaner2_0.jar libs/irclib.jar libs/js.jar libs/looks.jar libs/mail.jar libs/miglayout.jar libs/savemytube.jar libs/substance-swingx.jar libs/substance.jar libs/svnkit.jar libs/swingworker.jar libs/swingx.jar libs/ui.jar" />
<target name="compile">
<mkdir dir="${cls}" />
@ -40,7 +40,7 @@
</fileset>
</jar>
<delete file="Manifest.MF" failonerror="false" />
<manifest file="Manifest.MF">
<attribute name="Created-By" value="JD-Team and AppWork UG. Copyright Sauronsoftware.it" />
<attribute name="Class-Path" value="${class-path}" />
@ -242,7 +242,6 @@
<include name="jd/plugins/optional/jdtrayicon/**" />
</fileset>
</jar>
</target>
<target name="sign">

View File

@ -16,11 +16,11 @@ import jd.utils.JDUtilities;
public class DecrypterTester {
private static final String decrypter_prefix = "jd.plugins.decrypt.";
private final String decrypter_prefix = "jd.plugins.decrypt.";
private static final String decrypter_classname = null;
private final String decrypter_classname = null;
private static final String decrypter_testlink = null;
private final String decrypter_testlink = null;
public static void main(String[] args) {
new DecrypterTester();
@ -45,6 +45,9 @@ public class DecrypterTester {
if (testlink == null) {
System.out.println("TestLink is null!");
System.exit(0);
} else if (!decrypter.canHandle(testlink)) {
System.out.println("Decrypter can't handle the TestLink: " + testlink);
System.exit(0);
}
ArrayList<DownloadLink> dLinks = null;
@ -63,7 +66,7 @@ public class DecrypterTester {
result.append(dLink.getDownloadURL());
result.append(new char[] { '\r', '\n' });
}
JOptionPane.showMessageDialog(null,result.toString());
JOptionPane.showMessageDialog(null, result.toString());
System.exit(0);
}