Skip to content

Commit

Permalink
BVTCK-191 Make the TCK run on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aguibert authored and gsmet committed Jan 24, 2018
1 parent 526b140 commit bf05864
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -117,7 +117,7 @@ private static void addClassesForPackage(String packageName, ArrayList<Class<?>>
if ( file.getAbsolutePath().endsWith( ".class" ) ) {
// removes the .class extension
String className = file.getPath().substring( 0, file.getPath().length() - 6 );
className = className.replace( "/", "." );
className = className.replace( File.separator, "." );
className = className.substring( className.indexOf( packageName ) );

try {
Expand Down

0 comments on commit bf05864

Please sign in to comment.