mirror of
https://github.com/mirror/jdownloader.git
synced 2024-11-23 12:09:43 +00:00
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:
parent
ccd7be1c92
commit
059a0b61ed
@ -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>
|
||||
|
BIN
ressourcen/libs/antlr-runtime.jar
Normal file
BIN
ressourcen/libs/antlr-runtime.jar
Normal file
Binary file not shown.
4
ressourcen/libs/antlr-runtime.jar.info
Normal file
4
ressourcen/libs/antlr-runtime.jar.info
Normal 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
|
@ -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();
|
||||
|
@ -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() {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user