Since the 5 classes in this pull request contain only static methods, creating an instance of the class or extending the class is effectively useless.
Added final to the class definition to prevent extension.
Made the default constructor private to prevent instantiation.
Coverage remained the same at 68.552% when pulling 37d81bbe7eabe38e1edec5e1dfc83cc941273679 on tmzkt:master into 05843809ca1b905f4dcfd4abe29f26eb55756b43 on mpatric:master.
…c methods
Since the 5 classes in this pull request contain only
static
methods, creating an instance of the class or extending the class is effectively useless. Addedfinal
to the class definition to prevent extension. Made the default constructorprivate
to prevent instantiation.