Browse Source

remove wrong comment

svn path=/trunk/mcs/; revision=105991
Jb Evain 17 years ago
parent
commit
ae8b2d7944
1 changed files with 0 additions and 4 deletions
  1. 0 4
      mcs/class/System.Core/System.Linq.Expressions/UnaryExpression.cs

+ 0 - 4
mcs/class/System.Core/System.Linq.Expressions/UnaryExpression.cs

@@ -370,10 +370,6 @@ namespace System.Linq.Expressions {
 
 		void EmitUserDefinedLiftedOperator (EmitContext ec)
 		{
-			// that seems like a bug in MS's implementation
-			// they don't bail out if the operand is null
-			// and force the GetValue instead
-
 			var local = ec.EmitStored (operand);
 			ec.EmitNullableGetValue (local);
 			ec.EmitCall (method);