1570a3792b
Change test data files extension to "java"
7 lines
143 B
Java
7 lines
143 B
Java
//file
|
|
class Test {
|
|
public static String toFileSystemSafeName(String name) {
|
|
int size = name.length();
|
|
return name;
|
|
}
|
|
} |