Incrementing the index is important

This commit is contained in:
embeddedt 2023-04-16 13:31:01 -04:00
parent 3497adfa6d
commit c8523b3844
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -49,6 +49,7 @@ public class CachedResourcePath {
if(s.length() == 0) if(s.length() == 0)
continue; continue;
components[i] = PATH_COMPONENT_INTERNER.intern(s); components[i] = PATH_COMPONENT_INTERNER.intern(s);
i++;
} }
pathComponents = components; pathComponents = components;
} }