I imported the Guava MultiMap library into IntelliJ but when i try to use the MultiMap interface
Multimap<String, BlockingQueue<String>> addBlock = new ArrayListMultimap.create();
the create is not activate. It is coloured in red.
This is the import statement i used
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.Multimap;