Skip to content

Commit

Permalink
IGNITE-8145 Fixed wrong commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
akuznetsov-os committed Jan 30, 2019
1 parent f350ada commit 273d5f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/platforms/dotnet/Apache.Ignite.ndproj
Expand Up @@ -1795,7 +1795,7 @@ from t in JustMyCode.Types where
where newFields.Count > oldFields.Count
let addedFields = newFields.Where(f => f.WasAdded())
let rmvFields = oldFields.Where(f => f.WasRemoved())
let removedFields = oldFields.Where(f => f.WasRemoved())
orderby addedFields.Count() descending
Expand All @@ -1804,7 +1804,7 @@ select new {
nbOldFields = oldFields.Count,
nbNewFields = newFields.Count,
addedFields,
rmvFields,
removedFields,
Debt = (10*addedFields.Count()).ToMinutes().ToDebt(),
AnnualInterest = addedFields.Count().Linear(
Expand Down

0 comments on commit 273d5f0

Please sign in to comment.