Code style fix

This commit is contained in:
Justin Greywolf
2019-12-10 15:12:37 -08:00
parent 2eaa7f1ab6
commit 9fbcc5c32d

View File

@@ -7,7 +7,7 @@ const splitClassNameAndType = function(id) {
let genericType = '';
let className = id;
if(id.indexOf('~') > 0) {
if (id.indexOf('~') > 0) {
let split = id.split('~');
className = split[0];
genericType = split[1];