@@ -1064,9 +1064,9 @@ public IgnoredNames getIgnoredNames() {
1064
1064
*/
1065
1065
public String getSourceRootPath () {
1066
1066
if (sourceRootPath == null ) {
1067
- String srcpath = getEnv ().getSourceRootPath ();
1068
- if (srcpath != null ) {
1069
- sourceRootPath = srcpath .replace (File .separatorChar , PATH_SEPARATOR );
1067
+ String srcPathEnv = getEnv ().getSourceRootPath ();
1068
+ if (srcPathEnv != null ) {
1069
+ sourceRootPath = srcPathEnv .replace (File .separatorChar , PATH_SEPARATOR );
1070
1070
}
1071
1071
}
1072
1072
return sourceRootPath ;
@@ -1107,8 +1107,8 @@ public String getPath() {
1107
1107
* @return true if file/directory corresponding to the request path exists however is unreadable, false otherwise
1108
1108
*/
1109
1109
public boolean isUnreadable () {
1110
- File f = new File (getSourceRootPath (), getPath ());
1111
- return f .exists () && !f .canRead ();
1110
+ File file = new File (getSourceRootPath (), getPath ());
1111
+ return file .exists () && !file .canRead ();
1112
1112
}
1113
1113
1114
1114
/**
@@ -1123,12 +1123,12 @@ public boolean isUnreadable() {
1123
1123
* @see #getSourceRootPath()
1124
1124
*/
1125
1125
public File getResourceFile (String path ) {
1126
- File f ;
1127
- f = new File (getSourceRootPath (), path );
1128
- if (!f .canRead ()) {
1126
+ File file ;
1127
+ file = new File (getSourceRootPath (), path );
1128
+ if (!file .canRead ()) {
1129
1129
return null ;
1130
1130
}
1131
- return f ;
1131
+ return file ;
1132
1132
}
1133
1133
1134
1134
/**
0 commit comments