[System] Remove C#6 expression bodied property to fix bootstrapping with older mcs
[mono.git] / mcs / class / corlib / System / MulticastDelegate.cs
index 405894b4a5dd07f20acb689e19a4d6e6a11fda05..795593d28ceb603aa1854a90247b1442db68c3ca 100644 (file)
@@ -83,7 +83,9 @@ namespace System
                // https://gist.github.com/migueldeicaza/cd99938c2a4372e7e5d5
                //
                // Do not remove this API
-               internal bool HasSingleTarget => delegates == null;
+               internal bool HasSingleTarget {
+                       get { return delegates == null; }
+               }
 
                // <remarks>
                //   Equals: two multicast delegates are equal if their base is equal