@@ -230,14 +230,14 @@ public void store(History history, Repository repository)
230
230
* hash map entry for the file) in a file.
231
231
*/
232
232
File root = RuntimeEnvironment .getInstance ().getSourceRootFile ();
233
- for (Map .Entry <String , List <HistoryEntry >> e : map .entrySet ()) {
233
+ for (Map .Entry <String , List <HistoryEntry >> map_entry : map .entrySet ()) {
234
234
History hist = null ;
235
235
236
236
/*
237
237
* We do not want to generate history cache for files which
238
238
* do not currently exist in the repository.
239
239
*/
240
- File test = new File (env .getSourceRootPath () + e .getKey ());
240
+ File test = new File (env .getSourceRootPath () + map_entry .getKey ());
241
241
if (!test .exists ()) {
242
242
continue ;
243
243
}
@@ -248,7 +248,7 @@ public void store(History history, Repository repository)
248
248
* This ensures that their complete history (follow) will be
249
249
* saved.
250
250
*/
251
- String fullfile = e .getKey ();
251
+ String fullfile = map_entry .getKey ();
252
252
try {
253
253
String repodir = env .getPathRelativeToSourceRoot (
254
254
new File (repository .getDirectoryName ()), 0 );
@@ -264,11 +264,11 @@ public void store(History history, Repository repository)
264
264
if (hist == null ) {
265
265
hist = new History ();
266
266
267
- for (HistoryEntry ent : e .getValue ()) {
267
+ for (HistoryEntry ent : map_entry .getValue ()) {
268
268
ent .strip ();
269
269
}
270
270
// add all history entries
271
- hist .setHistoryEntries (e .getValue ());
271
+ hist .setHistoryEntries (map_entry .getValue ());
272
272
} else {
273
273
for (HistoryEntry ent : hist .getHistoryEntries ()) {
274
274
ent .strip ();
@@ -280,7 +280,7 @@ public void store(History history, Repository repository)
280
280
repository .assignTagsInHistory (hist );
281
281
}
282
282
283
- File file = new File (root , e .getKey ());
283
+ File file = new File (root , map_entry .getKey ());
284
284
if (!file .isDirectory ()) {
285
285
storeFile (hist , file );
286
286
}
0 commit comments