You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2017/01/31 17:55:39 UTC

[06/50] [abbrv] lucenenet git commit: Lucene.Net.Core.Support: Deleted unused BuildType class

Lucene.Net.Core.Support: Deleted unused BuildType class


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/a05b9429
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/a05b9429
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/a05b9429

Branch: refs/heads/api-work
Commit: a05b9429a91a088195dd6d2d5b2f4a982ddb3dc2
Parents: 484a3fe
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Tue Jan 31 11:25:40 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Tue Jan 31 11:25:40 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Core/Lucene.Net.csproj    |  1 -
 src/Lucene.Net.Core/Support/BuildType.cs | 32 ---------------------------
 2 files changed, 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/a05b9429/src/Lucene.Net.Core/Lucene.Net.csproj
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Lucene.Net.csproj b/src/Lucene.Net.Core/Lucene.Net.csproj
index fd6fc1c..7dc01d3 100644
--- a/src/Lucene.Net.Core/Lucene.Net.csproj
+++ b/src/Lucene.Net.Core/Lucene.Net.csproj
@@ -609,7 +609,6 @@
     <Compile Include="Support\AttributeItem.cs" />
     <Compile Include="Support\BitArrayExtensions.cs" />
     <Compile Include="Support\BufferExceptions.cs" />
-    <Compile Include="Support\BuildType.cs" />
     <Compile Include="Support\BundleResourceManagerFactory.cs" />
     <Compile Include="Support\ByteArrayOutputStream.cs" />
     <Compile Include="Support\ByteBuffer.cs" />

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/a05b9429/src/Lucene.Net.Core/Support/BuildType.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Support/BuildType.cs b/src/Lucene.Net.Core/Support/BuildType.cs
deleted file mode 100644
index 5886bcd..0000000
--- a/src/Lucene.Net.Core/Support/BuildType.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-
-namespace Lucene.Net.Support
-{
-    public class BuildType
-    {
-#if DEBUG
-        public static bool Debug = true;
-#else
-        public static bool Debug = false;
-#endif
-    }
-}
\ No newline at end of file