fix .s comment

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1848 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
alfred
2006-10-27 02:04:32 +00:00
parent fec7633848
commit 1f0b4e9cb0

View File

@ -329,7 +329,9 @@ public final class ModuleReader implements Common.ForDoAll {
//-----------------------------------ForDoAll-----------------------------------// //-----------------------------------ForDoAll-----------------------------------//
public void run(String filepath) throws Exception { public void run(String filepath) throws Exception {
String name = mi.temppath + File.separator + filepath.replace(mi.temppath + File.separator, ""); String name = mi.temppath + File.separator + filepath.replace(mi.temppath + File.separator, "");
commentlaplace.transform(name, name); if (commentlaplace.recognize(name)) {
commentlaplace.transform(name, name);
}
} }
public boolean filter(File dir) { public boolean filter(File dir) {