diff --git a/src/Xamarin.Android.Tools.Aidl/CSharpCodeGenerator.cs b/src/Xamarin.Android.Tools.Aidl/CSharpCodeGenerator.cs index 1401668affd..b9fb4a6e8e3 100644 --- a/src/Xamarin.Android.Tools.Aidl/CSharpCodeGenerator.cs +++ b/src/Xamarin.Android.Tools.Aidl/CSharpCodeGenerator.cs @@ -427,7 +427,6 @@ string GetCreateStatements (TypeName type, string parcel, string arg) return String.Format ("{0} = {1}.ReadInt () != 0;", arg, parcel); case "bool []": return String.Format ("{0} = {1}.CreateBooleanArray ();", arg, parcel); - // FIXME: I'm not sure if aidl should support byte... case "sbyte": return String.Format ("{0} = {1}.ReadByte ();", arg, parcel); case "byte []": @@ -501,7 +500,6 @@ string GetReadStatements (TypeName type, string parcel, string arg) return String.Format ("{1}.ReadStringArray ({0});", arg, parcel); case "bool []": return String.Format ("{1}.ReadBooleanArray ({0});", arg, parcel); - // FIXME: I'm not sure if aidl should support byte... case "byte []": return String.Format ("{1}.ReadByteArray ({0});", arg, parcel); case "char []": @@ -565,7 +563,6 @@ string GetWriteStatements (TypeName type, string parcel, string arg, string parc return parcel + ".WriteInt (" + arg + " ? 1 : 0);"; case "bool []": return parcel + ".WriteBooleanArray (" + arg + ");"; - // FIXME: I'm not sure if aidl should support byte... case "sbyte": return parcel + ".WriteByte (" + arg + ");"; case "byte []": @@ -683,4 +680,3 @@ string JoinArguments (Method m) } } } -