From f74a3ebe27d5c537f03529082c11d4fe0a44200b Mon Sep 17 00:00:00 2001 From: exe Date: Sun, 30 Mar 2014 12:41:53 +0200 Subject: [PATCH] [java] Byte constant to float conversion. --- CiTree.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CiTree.cs b/CiTree.cs index 974c44c..21f7b8e 100644 --- a/CiTree.cs +++ b/CiTree.cs @@ -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