Skip to content

Commit 6c3f3f5

Browse files
removed 'private' option, classes cannot be private lol
1 parent 77f0b08 commit 6c3f3f5

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,16 @@
9090
"enum": [
9191
"public",
9292
"internal",
93-
"private",
9493
"none"
9594
],
9695
"enumItemLabels": [
9796
"public",
9897
"internal",
99-
"private",
10098
"empty (internal)"
10199
],
102100
"markdownEnumDescriptions": [
103101
"[Access is not restricted.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/public)",
104102
"[Access is limited to the current assembly.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/internal)",
105-
"[Access is limited to the containing type.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/private)",
106103
"Uses nothing which lets C# use the default [(internal)](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/class) option."
107104
]
108105
},

src/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const DEST_PATH = 'snippets/snippets.json';
44
export const ISSUES_URL = 'https://github.com/kleber-swf/vscode-unity-code-snippets/issues';
55

66
export type IndentationStyle = 'kr' | 'allman';
7-
export type ClassAccessibilityLevel = 'public' |'internal' |'private' | 'none';
7+
export type ClassAccessibilityLevel = 'public' |'private' | 'none';
88

99
export type ReplaceType = 'PRIVATE' | 'CLASS_ACCESSIBILITY_LEVEL' | 'LINE_BREAK' | 'TAB';
1010
export type Replaces = Record<ReplaceType, string>;

0 commit comments

Comments
 (0)