Modified:
trunk/smart-load-test/smart-load-test-engine-impl/src/main/java/com/smartitengineering/loadtest/engine/impl/DefaultTestCaseCreationFactory.java
Log:
Remove unnecessary sysout
Signed-off-by: Imran M Yousuf <imyo...@smartitengineering.com>
Modified:
trunk/smart-load-test/smart-load-test-engine-impl/src/main/java/com/smartitengineering/loadtest/engine/impl/DefaultTestCaseCreationFactory.java
==============================================================================
---
trunk/smart-load-test/smart-load-test-engine-impl/src/main/java/com/smartitengineering/loadtest/engine/impl/DefaultTestCaseCreationFactory.java
(original)
+++
trunk/smart-load-test/smart-load-test-engine-impl/src/main/java/com/smartitengineering/loadtest/engine/impl/DefaultTestCaseCreationFactory.java
Wed Oct 29 03:57:30 2008
@@ -66,7 +66,6 @@
TestCase type = null;
Class<? extends TestCase> testCaseClass;
testCaseClass = checkForNewTestCaseClass(properties);
- System.out.println("Case: " + testCaseClass);
if (testCaseClass != null) {
try {
type = testCaseClass.getConstructor(Properties.class).