mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
misc
This commit is contained in:
parent
b7371b1ac2
commit
11f76e1a6e
4 changed files with 55 additions and 8 deletions
|
@ -0,0 +1,9 @@
|
|||
public final class StringTask implements Callable<String> {
|
||||
int id;
|
||||
public StringTask(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String call() {
|
||||
return "Run " + id;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue