Compare commits

..

No commits in common. "883236e581ec36dfaa2b28fba9523a691222b5a9" and "d8c6f4044209e1a594eec7c1b33f0fe91a3f51e8" have entirely different histories.

View File

@ -20,7 +20,7 @@ bool result = jsonDB.Add(new T());
IEnumerable<T> allItems = jsonDB.GetValues(); IEnumerable<T> allItems = jsonDB.GetValues();
// DBから特定のアイテムを取得します。 // DBから特定のアイテムを取得します。
IEnumerable<T> filteredItems = jsonDB.GetValues((T) => true); IEnumerable<T> filteredItems = jsonDB.GetValues((T) => true):
// ファイルに書き込む // ファイルに書き込む
jsonDB.Commit(); jsonDB.Commit();