build>full

Fixed Translator Extension

git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@28935 ebf7c1c2-ba36-0410-9fe8-c592906822b4

Former-commit-id: eeb880453e84adcb1b8c7affa5a82122d83809ef
This commit is contained in:
coalado 2015-02-06 17:11:27 +00:00
parent ccd7be1c92
commit 059a0b61ed
5 changed files with 8 additions and 13 deletions

View File

@ -102,5 +102,6 @@
<classpathentry kind="lib" path="ressourcen/libs/sqljet.jar"/>
<classpathentry kind="lib" path="ressourcen/libs/sequence-library.jar"/>
<classpathentry kind="lib" path="ressourcen/libs/svnkit.jar"/>
<classpathentry kind="lib" path="ressourcen/libs/antlr-runtime.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Binary file not shown.

View File

@ -0,0 +1,4 @@
http://svnkit.com/download.php
svnkit-1.7.13.jar
SVNkit Version 1.7.13
antlr-runtime-3.4.jar

View File

@ -64,6 +64,7 @@ public class DonateAction extends CustomizableAppAction {
details = JSonStorage.restoreFromString(json, DonationDetails.TYPEREF);
} catch (Throwable e) {
try {
//
if (e.getCause() != null) {
e = e.getCause();

View File

@ -1086,19 +1086,8 @@ public class StatsManager implements GenericConfigEventListener<Object>, Downloa
public void track(final String path) {
final HashMap<String, String> cvar = new HashMap<String, String>();
cvar.put("thread", Thread.currentThread().getName());
Exception e = new Exception();
StackTraceElement[] st = e.getStackTrace();
for (StackTraceElement ste : st) {
String src = ste.getClassName() + "." + ste.getMethodName();
if (src.contains("track")) {
continue;
}
cvar.put("source", "jd2");
cvar.put("stack", src);
break;
}
cvar.put("source", "jd2");
cvar.put("os", CrossSystem.getOS().name());
log(new AbstractTrackEntry() {