[Cleanup] Removed TARGET_JVM
[mono.git] / mcs / class / System.Drawing / System.Drawing / RectangleF.cs
index 0c651fe097749b4dedf847894835e31d1109686a..dc2ea17506ee790732f14e1e3baedf71a8df13d8 100644 (file)
@@ -47,13 +47,6 @@ namespace System.Drawing
                
                public static readonly RectangleF Empty;
 
-#if TARGET_JVM
-               internal java.awt.geom.Rectangle2D NativeObject {
-                       get {
-                               return new java.awt.geom.Rectangle2D.Float(X,Y,Width,Height);
-                       }
-               }
-#endif
 
                /// <summary>
                ///     FromLTRB Shared Method
@@ -255,14 +248,6 @@ namespace System.Drawing
                }
 
 
-#if TARGET_JVM
-               internal RectangleF (java.awt.geom.RectangularShape r2d) {
-                       this.x = (float) r2d.getX ();
-                       this.y = (float) r2d.getY ();
-                       this.width = (float) r2d.getWidth ();
-                       this.height = (float) r2d.getHeight ();
-               }
-#endif
 
                /// <summary>
                ///     Bottom Property