Skip to content

Commit a366fd9

Browse files
added private static field with no s_
1 parent d8b0c0b commit a366fd9

File tree

2 files changed

+2
-35
lines changed

2 files changed

+2
-35
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dotnet_diagnostic.interfaces_begin_with_I.enabled = true
3030
## Static fields should start with _s
3131
# naming style
3232
dotnet_naming_rule.static_fields_begin_with_s.style = custom
33-
dotnet_naming_rule.static_fields_begin_with_s.required_prefix = _r
33+
dotnet_naming_rule.static_fields_begin_with_s.required_prefix = s_
3434
dotnet_naming_rule.static_fields_begin_with_s.capitalization = camel_case
3535

3636
# naming symbols

Snowflake.Data/Core/LinterTestFile.cs

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -11,39 +11,6 @@ namespace Snowflake.Data.Core
1111
{
1212
public class LinterTestFile
1313
{
14-
internal ResultFormat ResultFormat { get; }
15-
private int PRIVATEVSAR;
16-
17-
public int RowCount { get; protected set; }
18-
19-
public int ColumnCount { get; protected set; }
20-
21-
public int ChunkIndex { get; protected set; }
22-
23-
internal int CompressedSize;
24-
25-
internal int UncompressedSize;
26-
27-
internal string Url { get; set; }
28-
29-
internal string[,] RowSet { get; set; }
30-
31-
public int GetRowCount() => RowCount;
32-
33-
public int GetChunkIndex() => ChunkIndex;
34-
35-
internal virtual void ResdDset(ExecResponseChunk chunkInfo, int chunkIndex)
36-
{
37-
RowCount = chunkInfo.rowCount; Url = chunkInfo.url; ChunkIndex = chunkIndex; CompressedSize = chunkInfo.compressedSize; UncompressedSize = chunkInfo.uncompressedSize;
38-
}
39-
40-
internal virtual void ResetForRetry()
41-
{
42-
}
43-
44-
public void something()
45-
{
46-
PRIVATEVSAR = 2;
47-
}
14+
private static int nuevoCampo;
4815
}
4916
}

0 commit comments

Comments
 (0)