Remove unnecessary comments

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@77 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2006-04-28 13:55:37 +00:00
parent 3d52de132f
commit ec472c95e6
1 changed files with 0 additions and 6 deletions

View File

@ -66,9 +66,6 @@ abstract class BuildAction extends Task {
@param logStr The string contains log information.
**/
public static void logMsg(Object action, String logStr) {
//
// Comment following code because in console debug environment, we can't
// get Project instance.
((Task) action).log(logStr, Project.MSG_INFO);
}
@ -83,9 +80,6 @@ abstract class BuildAction extends Task {
@param warningStr The string contains warning information.
**/
public static void warningMsg(Object action, String warningStr) {
//
// Comment following code because in console debug environment, we can't
// get Project instance.
((Task) action).log(warningStr, Project.MSG_WARN);
}