/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/hostifaces/RunspaceInit.cs
28 строк
844 B
xtqqczze
Autofix SA1518: The code must not contain extra blank lines at the end of the file (#13574)
11 ноя 2020, 10:15
Не верифицирован
11 ноя 2020, 10:15
4d2965a
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Dbg = System.Management.Automation.Diagnostics; using DWORD = System.UInt32; namespace System.Management.Automation.Runspaces { /// <summary> /// Runspace class for local runspace. /// </summary> internal sealed partial class LocalRunspace : RunspaceBase { /// <summary> /// Initialize default values of preference vars. /// </summary> /// <returns>Does not return a value.</returns> private void InitializeDefaults() { SessionStateInternal ss = _engine.Context.EngineSessionState; Dbg.Assert(ss != null, "SessionState should not be null"); // Add the variables that must always be there... ss.InitializeFixedVariables(); } } }