Skip to content

Commit 8d52187

Browse files
committed
Minor typing cleanup
1 parent 720a3a4 commit 8d52187

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SabreTools.Hashing/SpamSum/Comparisons.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ private static bool HasCommmonSubstring(string first, string second)
109109
if (first.Length < 7 || second.Length < 7)
110110
return false;
111111

112-
for (var i = 0; i < first.Length; i++)
112+
for (int i = 0; i < first.Length; i++)
113113
{
114-
for (var j = 0; j < second.Length; j++)
114+
for (int j = 0; j < second.Length; j++)
115115
{
116-
var currentIndex = 0;
116+
int currentIndex = 0;
117117
while ((i + currentIndex) < first.Length && (j + currentIndex) < second.Length && first[i + currentIndex] == second[j + currentIndex])
118118
{
119119
currentIndex++;

0 commit comments

Comments
 (0)