Skip to content

Commit d203d0a

Browse files
committed
revert var to int
1 parent bd1242f commit d203d0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Microsoft.Toolkit.Parsers/Markdown/Inlines/ImageInline.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ internal static InlineParseResult Parse(string markdown, int start, int end)
118118

119119
if (pos < end && markdown[pos] == '[')
120120
{
121-
var refstart = pos;
121+
int refstart = pos;
122122

123123
// Find the reference ']' character
124124
while (pos < end)

Microsoft.Toolkit.Uwp.Notifications/DesktopNotificationManager/DesktopNotificationManagerCompat.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public static bool IsRunningAsUwp()
185185
GetCurrentPackageFullName(ref length, sb);
186186

187187
sb = new StringBuilder(length);
188-
var error = GetCurrentPackageFullName(ref length, sb);
188+
int error = GetCurrentPackageFullName(ref length, sb);
189189

190190
_isRunningAsUwp = error != APPMODEL_ERROR_NO_PACKAGE;
191191
}

0 commit comments

Comments
 (0)