added hardware acceleration support

refactored to work with jdk 8
changed the validator to reentrant lock
This commit is contained in:
Macocian Adrian Radu
2020-06-08 18:21:54 +03:00
parent 84c1fa885b
commit 0225b80460
41 changed files with 1063 additions and 242 deletions

View File

@@ -1,7 +1,7 @@
package parser.converters;
import com.sun.jdi.InvalidTypeException;
import java.io.InvalidClassException;
public interface ConverterInterface<T> {
T convert(String content) throws InvalidTypeException;
T convert(String content) throws InvalidClassException;
}