Skip to content

Commit

Permalink
Merge pull request #20 from vapor/cache-settable
Browse files Browse the repository at this point in the history
make cache publicly settable
  • Loading branch information
loganwright authored Sep 13, 2016
2 parents 53805a5 + 15fdd59 commit 7159a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Leaf/Stem.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
public final class Stem {
public let workingDirectory: String
public var cache: [String: Leaf]?
public fileprivate(set) var tags: [String: Tag] = defaultTags
public fileprivate(set) var cache: [String: Leaf]?

public init(workingDirectory: String, cache: [String: Leaf]? = [:]) {
self.workingDirectory = workingDirectory.finished(with: "/")
Expand Down

0 comments on commit 7159a31

Please sign in to comment.