diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-28 13:55:37 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-28 13:55:37 +0000 |
commit | ec472c95e6513fe63fcdd78f6feb6a1dd5a16be8 (patch) | |
tree | 3485e79f11953382e04ca502e34e8d36b46d9cb9 /Tools/Source | |
parent | 3d52de132fe23d3deaadfa6ea0d41353aff4e244 (diff) | |
download | edk2-platforms-ec472c95e6513fe63fcdd78f6feb6a1dd5a16be8.tar.xz |
Remove unnecessary comments
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@77 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source')
-rw-r--r-- | Tools/Source/GenBuild/org/tianocore/build/pcd/action/BuildAction.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Tools/Source/GenBuild/org/tianocore/build/pcd/action/BuildAction.java b/Tools/Source/GenBuild/org/tianocore/build/pcd/action/BuildAction.java index 270b393a82..3614547e8d 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/pcd/action/BuildAction.java +++ b/Tools/Source/GenBuild/org/tianocore/build/pcd/action/BuildAction.java @@ -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);
}
|