mirror of
https://github.com/tachiyomiorg/extensions-lib.git
synced 2025-02-22 06:17:13 +01:00
Remove Duktape stubs
Should use QuickJS instead
This commit is contained in:
parent
7dfe39b011
commit
ffdb3d8b29
@ -1,26 +0,0 @@
|
|||||||
package com.squareup.duktape;
|
|
||||||
|
|
||||||
import java.io.Closeable;
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
@SuppressWarnings("all")
|
|
||||||
public class Duktape implements Closeable {
|
|
||||||
|
|
||||||
public static Duktape create() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public synchronized void close() throws IOException {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public synchronized Object evaluate(String script) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public synchronized <T> void set(String name, Class<T> type, T object) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user