Skip to content

Commit

Permalink
Remove redundant imports
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeSlave committed Oct 21, 2017
1 parent cf1cbcd commit 83baac8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions source/inilike/file.d
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ struct ListMap(K,V, size_t chunkSize = 32)
* Iterate over nodes mapped to Entry elements (useful for testing).
*/
auto byEntry() const {
import std.algorithm : map;
return byNode().map!(node => node.toEntry());
}

Expand Down Expand Up @@ -1194,7 +1193,6 @@ public:
* See_Also: $(D getNode), $(D byIniLine)
*/
@trusted auto byNode() {
import std.algorithm : map;
return _listMap.byNode().map!(node => lineNode(node));
}

Expand Down

0 comments on commit 83baac8

Please sign in to comment.