BAEL-3444: Renamed parsing logic variables for improved clarity in the context of article.
This commit is contained in:
parent
2319130043
commit
b51f276b2c
@ -28,8 +28,8 @@ public class BookStoreRunSteps {
|
||||
|
||||
List<List<String>> rows = table.asLists(String.class);
|
||||
|
||||
for (List<String> fields: rows) {
|
||||
store.addBook(new Book(fields.get(0), fields.get(1)));
|
||||
for (List<String> columns: rows) {
|
||||
store.addBook(new Book(columns.get(0), columns.get(1)));
|
||||
}
|
||||
}
|
||||
|
||||
@ -38,8 +38,8 @@ public class BookStoreRunSteps {
|
||||
|
||||
List<Map<String, String>> rows = table.asMaps(String.class, String.class);
|
||||
|
||||
for (Map<String, String> fields: rows) {
|
||||
store.addBook(new Book(fields.get("title"), fields.get("author")));
|
||||
for (Map<String, String> columns: rows) {
|
||||
store.addBook(new Book(columns.get("title"), columns.get("author")));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user