Skip to content

Commit

Permalink
changed p => true to p => false
Browse files Browse the repository at this point in the history
  • Loading branch information
EwneoN committed Nov 6, 2016
1 parent 6fd8bcc commit 2ef7542
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Queste/ExpressionBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public static Expression<Func<TSource, bool>> BuildExpression<TSource>(string qu

return expression != null
? Lambda<Func<TSource, bool>>(expression, parameter)
: p => true;
: p => false;
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions Queste/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.0.0")]
[assembly: AssemblyFileVersion("1.7.0.0")]
[assembly: AssemblyVersion("1.8.0.0")]
[assembly: AssemblyFileVersion("1.8.0.0")]

0 comments on commit 2ef7542

Please sign in to comment.