This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch ignite-2.9.1
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-2.9.1 by this push:
new 1d2d760 IGNITE-13755 .NET: Remove unused CacheFlags enum
1d2d760 is described below
commit 1d2d76051cbf36ebdb8cbfeca0695078234d55fb
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Nov 25 15:42:14 2020 +0300
IGNITE-13755 .NET: Remove unused CacheFlags enum
(cherry picked from commit 92ea7634a20bb5c7248e2cbe45930bf6b17a87de)
---
.../Apache.Ignite.Core/Apache.Ignite.Core.csproj | 1 -
.../Impl/Client/Cache/CacheFlags.cs | 38 ----------------------
2 files changed, 39 deletions(-)
diff --git
a/modules/platforms/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
b/modules/platforms/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
index 96d17d7..d110c85 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Apache.Ignite.Core.csproj
@@ -143,7 +143,6 @@
<Compile Include="Impl\Binary\MultidimensionalArrayHolder.cs" />
<Compile Include="Impl\Binary\MultidimensionalArraySerializer.cs" />
<Compile Include="Impl\Binary\OptimizedMarshallerObject.cs" />
- <Compile Include="Impl\Client\Cache\CacheFlags.cs" />
<Compile Include="Impl\Client\Cache\ClientCacheConfigurationSerializer.cs"
/>
<Compile Include="Impl\Client\Cache\Query\ClientFieldsQueryCursor.cs" />
<Compile Include="Impl\Client\Cache\Query\ClientQueryCursor.cs" />
diff --git
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Cache/CacheFlags.cs
b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Cache/CacheFlags.cs
deleted file mode 100644
index e24d952..0000000
---
a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Cache/CacheFlags.cs
+++ /dev/null
@@ -1,38 +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 Apache.Ignite.Core.Impl.Client.Cache
-{
- using System;
-
- /// <summary>
- /// Cache operation flags.
- /// </summary>
- [Flags]
- internal enum CacheFlags : byte
- {
- /// <summary>
- /// No flags.
- /// </summary>
- None = 0x00,
-
- /// <summary>
- /// Keep binary.
- /// </summary>
- KeepBinary = 0x01
- }
-}