Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 5217321

Browse files
Removing const string
1 parent 815d655 commit 5217321

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/OutputProcessors/StatusOutputProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ public int Compare(string x, string y)
224224
Guard.ArgumentNotNull(x, nameof(x));
225225
Guard.ArgumentNotNull(y, nameof(y));
226226

227-
const string meta = ".meta";
227+
var meta = ".meta";
228228
var xHasMeta = x.EndsWith(meta);
229229
var yHasMeta = y.EndsWith(meta);
230230

0 commit comments

Comments
 (0)