提交 f2b8207a authored 作者: Thomas Mueller's avatar Thomas Mueller

avoid new word

上级 00004e3a
......@@ -20,7 +20,7 @@ public class UpgradeCreator {
*
* @param args the command line parameters
*/
private static String[] TEXTFILE_EXTENSIONS = { ".java", ".xml", ".bat", ".sh", ".txt", ".html", ".csv" };
private static String[] TEXT_FILE_EXTENSIONS = { ".java", ".xml", ".bat", ".sh", ".txt", ".html", ".csv" };
public static void main(String[] args) throws Exception {
if (args.length != 2) {
......@@ -82,7 +82,7 @@ public class UpgradeCreator {
}
private static boolean isTextFile(File file) {
for (String extension : TEXTFILE_EXTENSIONS) {
for (String extension : TEXT_FILE_EXTENSIONS) {
if (file.getName().toLowerCase().endsWith(extension)) {
return true;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论