I have statement:
MongoClient client = new MongoClient(uri);
and there si warning:
[Java] Resource leak: 'client' is never closed
According to Do I need to explicitly close connection?, I don't need to close connection.
How can I suppress this warning? @SuppressWarnings("???")