Skip to content

Commit 7face93

Browse files
committed
fix inspect results.
1 parent 34bd768 commit 7face93

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

TryCSharp.Tools.Cui/ExitPhaseValidator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ internal class ExitPhaseValidator : IHasValidation<string>
1111
/// <summary>
1212
/// 終了文字
1313
/// </summary>
14-
public const string EXIT_PHASE = "EXIT";
14+
private const string EXIT_PHASE = "EXIT";
1515
/// <summary>
1616
/// 終了文字
1717
/// </summary>
18-
public const string QUIT_PHASE = "QUIT";
18+
private const string QUIT_PHASE = "QUIT";
1919

2020
/// <summary>
2121
/// 終了文字か否かを検証します。

TryCSharp.Tools.Cui/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static void Main()
6161
var fullMatch = fqdn.Split('.').Last() == inp;
6262
if (fullMatch)
6363
{
64-
optInfo["fullMatched"] = fullMatch;
64+
optInfo["fullMatched"] = true;
6565
}
6666

6767
return fqdn.Contains(inp);

TryCSharp.Tools.Cui/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following

0 commit comments

Comments
 (0)