Skip to content

Commit 4659cd7

Browse files
committed
Clean up and organize imports.
1 parent c909b2f commit 4659cd7

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

src/com/androidquery/AbstractAQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,7 @@ public T cache(String url, long expire){
21062106

21072107

21082108
/**
2109-
* Stop all ajax activities. Should be called when current activity is to be destroy.
2109+
* Stop all ajax activities. Should only be called when app exits.
21102110
*
21112111
*
21122112
* @return self

src/com/androidquery/util/AQUtility.java

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -322,19 +322,7 @@ public static void postAsync(Object handler, String method){
322322
}
323323

324324
public static void postAsync(final Object handler, final String method, final Class<?>[] sig, final Object... params){
325-
/*
326-
ExecutorService exe = getFileStoreExecutor();
327-
328-
exe.execute(new Runnable() {
329-
330-
@Override
331-
public void run() {
332-
333-
AQUtility.invokeHandler(handler, method, false, true, sig, params);
334-
335-
}
336-
});
337-
*/
325+
338326
postAsync(new Runnable() {
339327

340328
@Override

0 commit comments

Comments
 (0)