You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ActionListener class has a protectedstatic method getLocalEphemeral().
Subclasses can't access static method so protected access is inappropriate. Consider making private if only this class will use it. Consider refactoring to another class if it's going to be used by other classes
As it's not a field accessor, get*() is not the best name. Consider createLocalEphemeralAddress().
The
ActionListener
class has aprotected
static
methodgetLocalEphemeral()
.protected
access is inappropriate. Consider makingprivate
if only this class will use it. Consider refactoring to another class if it's going to be used by other classesget*()
is not the best name. ConsidercreateLocalEphemeralAddress()
.See #45 (comment)
The text was updated successfully, but these errors were encountered: