Protected class AbstractMutableDoubleMap.SimpleEntrySet is exposed through AbstractMutableDoubleMap#entrySet()
Zero3 opened this issue · comments
Christian Funder Sommerlund commented
The AbstractMutableDoubleMap.SimpleEntrySet
class is protected, but exposed through the public AbstractMutableDoubleMap#entrySet()
method. This is a problem, because you can't look at the SimpleEntrySet
object returned by the entrySet()
method from "public" when you do not have "public" access to the SimpleEntrySet
class.
Justin Basilico commented
Yeah, good catch. That return type should be changed to an interface.