dokan-java icon indicating copy to clipboard operation
dokan-java copied to clipboard

Consider converting UnsignedNumbers to an interface

Open hrstoyanov opened this issue 5 years ago • 0 comments

Because all its methods are static methods. This would prevent people from doing stupid things like: UnsignedNumbers un = new UnsignedNumbers();

...Or make the class final and add a private constructor:

public class UnsignedNumbers {
private UnsignedNumbers(){/*do not instantiate me*/}
}

hrstoyanov avatar Jul 26 '20 00:07 hrstoyanov