Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use forward-slash instead of File.separator for resource URLs
Previously, we were calling getClassLoader().getResource(String) with a path that used File.separator. Since getResource expects a URL, this is incorrect, and, unfortunately, fails on Windows, where File.separator incidentally isn't a forward slash. Fix the code to always use a forward slash here.
- Loading branch information