mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
9 lines
No EOL
194 B
Java
9 lines
No EOL
194 B
Java
public final class StringTask implements Callable<String> {
|
|
int id;
|
|
public StringTask(int id) {
|
|
this.id = id;
|
|
}
|
|
public String call() {
|
|
return "Run " + id;
|
|
}
|
|
} |