diff --git a/package.json b/package.json index 6a494b7..72932a0 100644 --- a/package.json +++ b/package.json @@ -90,19 +90,16 @@ "enum": [ "public", "internal", - "private", "none" ], "enumItemLabels": [ "public", "internal", - "private", "empty (internal)" ], "markdownEnumDescriptions": [ "[Access is not restricted.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/public)", "[Access is limited to the current assembly.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/internal)", - "[Access is limited to the containing type.](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/private)", "Uses nothing which lets C# use the default [(internal)](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/class) option." ] }, diff --git a/src/model.ts b/src/model.ts index 213b683..441c04f 100644 --- a/src/model.ts +++ b/src/model.ts @@ -4,7 +4,7 @@ export const DEST_PATH = 'snippets/snippets.json'; export const ISSUES_URL = 'https://github.com/kleber-swf/vscode-unity-code-snippets/issues'; export type IndentationStyle = 'kr' | 'allman'; -export type ClassAccessibilityLevel = 'public' |'internal' |'private' | 'none'; +export type ClassAccessibilityLevel = 'public' |'private' | 'none'; export type ReplaceType = 'PRIVATE' | 'CLASS_ACCESSIBILITY_LEVEL' | 'LINE_BREAK' | 'TAB'; export type Replaces = Record;