Skip to content

Commit

Permalink
test adding interface
Browse files Browse the repository at this point in the history
  • Loading branch information
VeraZhang0311 committed Jul 1, 2024
1 parent 279b6d2 commit 4e2807b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Src/CommandLine/CommandInterface.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2138,7 +2138,14 @@ private void DoInteractiveHelp(string s)

private void DoFetchConstraints(string s)
{
var cmdParts = s.Split(cmdSplitChars, 3, StringSplitOptions.RemoveEmptyEntries);
if (cmdParts.Length < 2 || cmdParts.Length > 5)
{
sink.WriteMessageLine(FetchConstraintsMsg, SeverityKind.Warning);
return;
}

sink.WriteMessageLine("Fetching constraints...");
}

private void DoConfigHelp(string s)
Expand Down

0 comments on commit 4e2807b

Please sign in to comment.