Skip to content

Commit

Permalink
Merge pull request #1346 from LoneBoco/fix-cmd-arguments
Browse files Browse the repository at this point in the history
Fixes #1269.
  • Loading branch information
david-driscoll authored Dec 11, 2018
2 parents 2881c46 + 3eeec4e commit 1cc5321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OmniSharp.Stdio/StdioCommandLineApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ public StdioCommandLineApplication() : base()
_encoding = Application.Option("-e | --encoding", "Input / output encoding for STDIO protocol.", CommandOptionType.SingleValue);
}

public bool Stdio => _stdio.GetValueOrDefault(true);
public bool Stdio => true;

public bool Lsp => _lsp.GetValueOrDefault(false);
public bool Lsp => _lsp.HasValue();

public string Encoding => _encoding.GetValueOrDefault<string>(null);
}
Expand Down

0 comments on commit 1cc5321

Please sign in to comment.