List<RPC> mrpcs = new ArrayList<>();
rpcs = hibernateSession.createQuery("FROM RPC").list();
This gives me a warning. The Intellij's solution is to change List<RPC>
to List
I want to avoid warnings on my program.
Should I keep like this or change it?