Java unchecked method invocation
- by Sam
I'm trying to setup a multithreaded application using SQLite4java, and everything is working fine. However, according to the getting started tutorial I am meant to create an object of type "object" and in order to return a value of null (due to use of generic types).
Here is the suggested code:
queue.execute(new SQLiteJob<Object>() {
…