[Cherbot-commit] SF.net SVN: cherbot: [28] trunk/src/net/sf/cherbot
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2006-10-29 00:19:32
|
Revision: 28
http://svn.sourceforge.net/cherbot/?rev=28&view=rev
Author: christianhujer
Date: 2006-10-28 17:19:13 -0700 (Sat, 28 Oct 2006)
Log Message:
-----------
Optimized imports.
Modified Paths:
--------------
trunk/src/net/sf/cherbot/ExampleTestCase.java
trunk/src/net/sf/cherbot/ExampleTester.java
trunk/src/net/sf/cherbot/Manager.java
Modified: trunk/src/net/sf/cherbot/ExampleTestCase.java
===================================================================
--- trunk/src/net/sf/cherbot/ExampleTestCase.java 2006-10-29 00:11:57 UTC (rev 27)
+++ trunk/src/net/sf/cherbot/ExampleTestCase.java 2006-10-29 00:19:13 UTC (rev 28)
@@ -7,7 +7,7 @@
package net.sf.cherbot;
import java.util.regex.Pattern;
-import junit.framework.*;
+import junit.framework.TestCase;
/**
* Class for a single Test Case that checks an example String against a regular expression.
Modified: trunk/src/net/sf/cherbot/ExampleTester.java
===================================================================
--- trunk/src/net/sf/cherbot/ExampleTester.java 2006-10-29 00:11:57 UTC (rev 27)
+++ trunk/src/net/sf/cherbot/ExampleTester.java 2006-10-29 00:19:13 UTC (rev 28)
@@ -8,7 +8,9 @@
import java.lang.reflect.Method;
import java.util.Enumeration;
-import junit.framework.*;
+import junit.framework.Test;
+import junit.framework.TestResult;
+import junit.framework.TestSuite;
/**
* Class that tests wether the examples given on the Commands really match the regular expressions.
Modified: trunk/src/net/sf/cherbot/Manager.java
===================================================================
--- trunk/src/net/sf/cherbot/Manager.java 2006-10-29 00:11:57 UTC (rev 27)
+++ trunk/src/net/sf/cherbot/Manager.java 2006-10-29 00:19:13 UTC (rev 28)
@@ -17,6 +17,7 @@
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.*;
import java.lang.annotation.Target;
+import java.security.Permission;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
@@ -26,7 +27,6 @@
import java.util.NoSuchElementException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
-import java.security.Permission;
/**
* Base class for managers.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|