Added final keywords

This commit is contained in:
Lukas Eder 2012-10-27 18:56:42 +02:00
parent 823732175a
commit 16be60c44a

View File

@ -201,7 +201,7 @@ final class Util {
}
}
private static boolean attachRecords(Configuration configuration) {
private static final boolean attachRecords(Configuration configuration) {
if (configuration != null) {
Settings settings = configuration.getSettings();
@ -1025,7 +1025,7 @@ final class Util {
/**
* Get a property name associated with a getter/setter method name.
*/
static String getPropertyName(String methodName) {
static final String getPropertyName(String methodName) {
String name = methodName;
if (name.startsWith("is") && name.length() > 2) {