Skip to content

Commit 14bd5b8

Browse files
committed
dead files
1 parent 8ac294d commit 14bd5b8

File tree

9 files changed

+19
-215
lines changed

9 files changed

+19
-215
lines changed

.classpath

Lines changed: 0 additions & 8 deletions
This file was deleted.

.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>AndroidAsync</name>
3+
<name>Scrypted-AndroidAsync</name>
44
<comment></comment>
55
<projects>
66
</projects>

AndroidAsync/.classpath

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
4-
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
5-
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
6-
<classpathentry kind="src" path="src"/>
7-
<classpathentry kind="src" path="gen"/>
8-
<classpathentry kind="output" path="bin/classes"/>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
4+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
5+
<classpathentry kind="output" path="bin/default"/>
96
</classpath>

AndroidAsync/.project

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>AndroidAsync</name>
3+
<name>AndroidAsync-AndroidAsync</name>
44
<comment></comment>
55
<projects>
66
</projects>
77
<buildSpec>
88
<buildCommand>
9-
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
1313
<buildCommand>
14-
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
14+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
1515
<arguments>
1616
</arguments>
1717
</buildCommand>
1818
<buildCommand>
19-
<name>org.eclipse.jdt.core.javabuilder</name>
19+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
2020
<arguments>
2121
</arguments>
2222
</buildCommand>

AndroidAsync/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ android {
5151
}
5252

5353
// upload to maven task
54-
if (System.getenv().I_AM_KOUSH == 'true') {
55-
apply from: '/Users/koush/cfg/maven.gradle'
56-
}
54+
//if (System.getenv().I_AM_KOUSH == 'true') {
55+
// apply from: '/Users/koush/cfg/maven.gradle'
56+
//}

AndroidAsync/build.xml

Lines changed: 0 additions & 92 deletions
This file was deleted.

AndroidAsync/src/com/koushikdutta/async/future/SimpleFuture.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,14 @@ AsyncSemaphore ensureWaiterLocked() {
169169
public boolean setComplete(Exception e) {
170170
return setComplete(e, null, null);
171171
}
172+
public boolean setCompleteException(Exception e) { return setComplete(e, null, null); }
172173

173174
public boolean setComplete(T value) {
174175
return setComplete(null, value, null);
175176
}
177+
public boolean setCompleteValue(T value) {
178+
return setComplete(null, value, null);
179+
}
176180

177181
public boolean setComplete(Exception e, T value) {
178182
return setComplete(e, value, null);
@@ -238,6 +242,10 @@ public Future<T> setComplete(Future<T> future) {
238242
return setComplete(future, null);
239243
}
240244

245+
public Future<T> setCompleteFuture(Future<T> future) {
246+
return setComplete(future, null);
247+
}
248+
241249

242250
/**
243251
* THIS METHOD IS FOR TEST USE ONLY

AndroidAsyncSample/.classpath

Lines changed: 0 additions & 9 deletions
This file was deleted.

AndroidAsyncSample/build.xml

Lines changed: 0 additions & 92 deletions
This file was deleted.

0 commit comments

Comments
 (0)