Skip to content

Commit

Permalink
Fix constructor argument
Browse files Browse the repository at this point in the history
  • Loading branch information
nezihyigitbasi authored and electrum committed Jul 20, 2016
1 parent 64a0add commit 58283b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Cast(Expression expression, String type)

public Cast(Expression expression, String type, boolean safe)
{
this(Optional.empty(), expression, type, false, false);
this(Optional.empty(), expression, type, safe, false);
}

public Cast(Expression expression, String type, boolean safe, boolean typeOnly)
Expand Down

0 comments on commit 58283b2

Please sign in to comment.