Remove old C# port before committing new one
[zxing.git] / csharp / BlackPointEstimationMethod.cs
diff --git a/csharp/BlackPointEstimationMethod.cs b/csharp/BlackPointEstimationMethod.cs
deleted file mode 100755 (executable)
index 5217afe..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*\r
-* Licensed under the Apache License, Version 2.0 (the "License");\r
-* you may not use this file except in compliance with the License.\r
-* You may obtain a copy of the License at\r
-*\r
-*      http://www.apache.org/licenses/LICENSE-2.0\r
-*\r
-* Unless required by applicable law or agreed to in writing, software\r
-* distributed under the License is distributed on an "AS IS" BASIS,\r
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-* See the License for the specific language governing permissions and\r
-* limitations under the License.\r
-*/\r
-\r
-using System;\r
-namespace com.google.zxing\r
-{\r
-\r
-    /// <summary> <p>Enumerates different methods of sampling an imagine to estimate a black point.</p>\r
-    /// \r
-    /// </summary>\r
-    /// <author>  srowen@google.com (Sean Owen), dswitkin@google.com (Daniel Switkin)\r
-    /// </author>\r
-    public sealed class BlackPointEstimationMethod\r
-    {\r
-          /**\r
-           * Method probably most suitable for use with 2D barcdoe format.\r
-           */\r
-          public static BlackPointEstimationMethod TWO_D_SAMPLING = new BlackPointEstimationMethod();\r
-          /**\r
-           * Method probably most suitable for 1D barcode decoding, where one row at a time is sampled.\r
-           */\r
-          public static BlackPointEstimationMethod ROW_SAMPLING = new BlackPointEstimationMethod();\r
-\r
-          private BlackPointEstimationMethod() {\r
-            // do nothing\r
-          }\r
-    }\r
-}
\ No newline at end of file