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:37 UTC

[04/50] [abbrv] lucenenet git commit: Lucene.Net.Core.Support: Renamed file AttributeImplItem > AttributeItem

Lucene.Net.Core.Support: Renamed file AttributeImplItem > AttributeItem


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

Branch: refs/heads/api-work
Commit: 6ece1f30e9868772809e0476983f906b9cc12737
Parents: e9f9752
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Tue Jan 31 11:14:39 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Tue Jan 31 11:19:02 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Core/Lucene.Net.csproj           |  2 +-
 .../Support/AttributeImplItem.cs                | 42 --------------------
 src/Lucene.Net.Core/Support/AttributeItem.cs    | 42 ++++++++++++++++++++
 3 files changed, 43 insertions(+), 43 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6ece1f30/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 d2e9b0a..87cb2b0 100644
--- a/src/Lucene.Net.Core/Lucene.Net.csproj
+++ b/src/Lucene.Net.Core/Lucene.Net.csproj
@@ -606,7 +606,7 @@
     <Compile Include="Support\AtomicReferenceArray.cs" />
     <Compile Include="Support\BreakIterator.cs" />
     <Compile Include="Support\Buffer.cs" />
-    <Compile Include="Support\AttributeImplItem.cs" />
+    <Compile Include="Support\AttributeItem.cs" />
     <Compile Include="Support\BitSetSupport.cs" />
     <Compile Include="Support\BufferExceptions.cs" />
     <Compile Include="Support\BuildType.cs" />

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6ece1f30/src/Lucene.Net.Core/Support/AttributeImplItem.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Support/AttributeImplItem.cs b/src/Lucene.Net.Core/Support/AttributeImplItem.cs
deleted file mode 100644
index 5de500f..0000000
--- a/src/Lucene.Net.Core/Support/AttributeImplItem.cs
+++ /dev/null
@@ -1,42 +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.
- *
-*/
-
-using System;
-
-namespace Lucene.Net.Support
-{
-    /// <summary>
-    /// A simple wrapper to allow for the use of the GeneralKeyedCollection.  The
-    /// wrapper is required as there can be several keys for an object depending
-    /// on how many interfaces it implements.
-    /// </summary>
-    internal sealed class AttributeItem
-    {
-        internal AttributeItem(Type key, Util.Attribute value)
-        {
-            this.Key = key;
-            this.Value = value;
-        }
-
-        public Type Key { get; set; }
-        public Util.Attribute Value { get; set; }
-    }
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6ece1f30/src/Lucene.Net.Core/Support/AttributeItem.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Support/AttributeItem.cs b/src/Lucene.Net.Core/Support/AttributeItem.cs
new file mode 100644
index 0000000..5de500f
--- /dev/null
+++ b/src/Lucene.Net.Core/Support/AttributeItem.cs
@@ -0,0 +1,42 @@
+/*
+ *
+ * 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.
+ *
+*/
+
+using System;
+
+namespace Lucene.Net.Support
+{
+    /// <summary>
+    /// A simple wrapper to allow for the use of the GeneralKeyedCollection.  The
+    /// wrapper is required as there can be several keys for an object depending
+    /// on how many interfaces it implements.
+    /// </summary>
+    internal sealed class AttributeItem
+    {
+        internal AttributeItem(Type key, Util.Attribute value)
+        {
+            this.Key = key;
+            this.Value = value;
+        }
+
+        public Type Key { get; set; }
+        public Util.Attribute Value { get; set; }
+    }
+}
\ No newline at end of file