Skip to content

Commit 38e3344

Browse files
committed
Just use char
1 parent 9b41530 commit 38e3344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/Util/Icons/Editor/IconExplorer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private void OnGUI()
100100
.Where(s => s.IsNullOrEmpty() == false)
101101
.Select(s =>
102102
{
103-
var split = s.Split(" ");
103+
var split = s.Split(' ');
104104
var name = split[0];
105105
var code = int.Parse(split[1], System.Globalization.NumberStyles.HexNumber);
106106
return (name, code);

0 commit comments

Comments
 (0)