We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ef03d commit 3d8013aCopy full SHA for 3d8013a
Engine/Settings.cs
@@ -462,9 +462,7 @@ private void parseSettingsFile(string settingsFilePath)
462
Hashtable hashtable;
463
try
464
{
465
- // ideally we should use HashtableAst.SafeGetValue() but since
466
- // it is not available on PSv3, we resort to our own narrow implementation.
467
- hashtable = Helper.GetSafeValueFromHashtableAst(hashTableAst);
+ hashtable = (Hashtable) hashTableAst.SafeGetValue();
468
}
469
catch (InvalidOperationException e)
470
0 commit comments