Skip to content

Commit

Permalink
Prepare for 0.6.6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
groboclown committed Aug 11, 2015
1 parent 8b0984d commit 9ffa7b8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private Set<FilePath> loadP4IntoIdeaChangelists(
}
}

for (Entry<LocalChangeList, Set<FilePath>> changeListSetEntry : changesToFiles.entrySet()) {
for (Map.Entry<LocalChangeList, Set<FilePath>> changeListSetEntry : changesToFiles.entrySet()) {
final LocalChangeList local = changeListSetEntry.getKey();
final Set<FilePath> fileSet = changeListSetEntry.getValue();

Expand Down Expand Up @@ -264,7 +264,7 @@ private Set<FilePath> loadP4IntoIdeaChangelists(
// All the remaining files in the lists are ones that don't have existing changes.
// We can't have this as part of the above loop, because that must process all existing
// changes first.
for (Entry<LocalChangeList, Set<FilePath>> changeListSetEntry : changesToFiles.entrySet()) {
for (Map.Entry<LocalChangeList, Set<FilePath>> changeListSetEntry : changesToFiles.entrySet()) {
final LocalChangeList local = changeListSetEntry.getKey();
final Set<FilePath> fileSet = changeListSetEntry.getValue();

Expand Down

0 comments on commit 9ffa7b8

Please sign in to comment.