Remove intermediate debugging variables from Themes.ThemeSerializer.EncodeColorName().

This commit is contained in:
Riley McArdle
2013-03-20 22:26:10 -05:00
parent 4f06a48d16
commit e1329348d1

View File

@@ -103,10 +103,7 @@ Namespace Themes
If color.IsNamedColor Then
Return color.Name
Else
Dim argb As Integer = color.ToArgb()
Dim hexValue As String = Hex(argb)
Dim paddedHex As String = hexValue.PadLeft(8, "0")
Return paddedHex
Return Hex(color.ToArgb()).PadLeft(8, "0")
End If
End Function