Skip to content

Commit

Permalink
[java] Byte constant to float conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
exe committed Mar 30, 2014
1 parent b8317f0 commit f74a3eb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions CiTree.cs
Original file line number Diff line number Diff line change
Expand Up @@ -484,10 +484,6 @@ public CiConstExpr(object value)
{
this.Value = value;
}
public CiConstExpr(int value)
{
this.Value = value >= 0 && value <= 255 ? (byte) value : (object) value;
}
public override CiType Type
{
get
Expand Down

0 comments on commit f74a3eb

Please sign in to comment.