提交 21957ee0 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 404e3c5d
...@@ -89,13 +89,12 @@ public class SpellChecker { ...@@ -89,13 +89,12 @@ public class SpellChecker {
} }
} }
/** Searches for spelling errors in the source and documentation */
private void process(File file) throws IOException { private void process(File file) throws IOException {
String name = file.getCanonicalPath(); String name = file.getName();
if (name.endsWith(".svn")) { if (name.endsWith(".svn") || name.endsWith(".DS_Store")) {
return; return;
} }
if (file.getCanonicalFile().getName().startsWith("_") && name.indexOf("_en") < 0) { if (name.startsWith("_") && name.indexOf("_en") < 0) {
return; return;
} }
if (file.isDirectory()) { if (file.isDirectory()) {
...@@ -111,22 +110,16 @@ public class SpellChecker { ...@@ -111,22 +110,16 @@ public class SpellChecker {
} else { } else {
suffix = fileName.substring(idx + 1); suffix = fileName.substring(idx + 1);
} }
boolean ignore = false;
for (String s : IGNORE) { for (String s : IGNORE) {
if (s.equals(suffix)) { if (s.equals(suffix)) {
ignore = true; return;
break;
} }
} }
for (int i = 0; i < IGNORE_FILES.length; i++) { for (String ignoreFile : IGNORE_FILES) {
if (fileName.endsWith(IGNORE_FILES[i])) { if (fileName.endsWith(ignoreFile)) {
ignore = true; return;
break;
} }
} }
if (ignore) {
return;
}
boolean ok = false; boolean ok = false;
for (String s : SUFFIX) { for (String s : SUFFIX) {
if (s.equals(suffix)) { if (s.equals(suffix)) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论