jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system Linux.java,1.1.1.1,1.2 Windows2000.java,1.1.1.1,1.2 Windows95.java,1.1.1.1,1.2 Windows98.java,1.1.1.1,1.2 WindowsNT.java,1.1.1.1,1.2 WindowsXP.java,1.1.1.1,1.2

Leo Simons <[email protected]>
Newsgroups gmane.comp.java.jicarilla.cvs
Message-ID <[email protected]>
Update of /cvsroot/jicarilla/jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5723/suf-components/event/impl/src/java/org/apache/excalibur/util/system

Modified Files:
	Linux.java Windows2000.java Windows95.java Windows98.java 
	WindowsNT.java WindowsXP.java 
Log Message:
optimize imports

Index: Linux.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system/Linux.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Linux.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ Linux.java	10 Apr 2004 22:50:58 -0000	1.2
@@ -16,13 +16,13 @@
  */
 package org.apache.excalibur.util.system;
 
+import org.apache.excalibur.util.CPUParser;
+
 import java.io.BufferedReader;
 import java.io.FileReader;
 import java.util.Properties;
 import java.util.StringTokenizer;
 
-import org.apache.excalibur.util.CPUParser;
-
 /**
  * Parses the Linux environment--Uses the proc filesystem to determine all the
  * CPU information.

Index: Windows98.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system/Windows98.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Windows98.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ Windows98.java	10 Apr 2004 22:50:58 -0000	1.2
@@ -16,11 +16,11 @@
  */
 package org.apache.excalibur.util.system;
 
+import org.apache.excalibur.util.CPUParser;
+
 import java.io.BufferedReader;
 import java.io.InputStreamReader;
 
-import org.apache.excalibur.util.CPUParser;
-
 /**
  * Parses the Windows 98 environment--the same class should work for other
  * Windows versions, but I only have one to test.  Windows 9x environments

Index: WindowsXP.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system/WindowsXP.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- WindowsXP.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ WindowsXP.java	10 Apr 2004 22:50:58 -0000	1.2
@@ -16,11 +16,11 @@
  */
 package org.apache.excalibur.util.system;
 
+import org.apache.excalibur.util.CPUParser;
+
 import java.io.BufferedReader;
 import java.io.InputStreamReader;
 
-import org.apache.excalibur.util.CPUParser;
-
 /**
  * Parses the Windows XP environment.
  *

Index: Windows2000.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system/Windows2000.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Windows2000.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ Windows2000.java	10 Apr 2004 22:50:58 -0000	1.2
@@ -16,11 +16,11 @@
  */
 package org.apache.excalibur.util.system;
 
+import org.apache.excalibur.util.CPUParser;
+
 import java.io.BufferedReader;
 import java.io.InputStreamReader;
 
-import org.apache.excalibur.util.CPUParser;
-
 /**
  * Parses the Windows 2000 environment--the same class should work for other
  * Windows versions, but I only have one to test.

Index: Windows95.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system/Windows95.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Windows95.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ Windows95.java	10 Apr 2004 22:50:58 -0000	1.2
@@ -16,11 +16,11 @@
  */
 package org.apache.excalibur.util.system;
 
+import org.apache.excalibur.util.CPUParser;
+
 import java.io.BufferedReader;
 import java.io.InputStreamReader;
 
-import org.apache.excalibur.util.CPUParser;
-
 /**
  * Parses the Windows 95 environment--the same class should work for other
  * Windows versions, but I only have one to test.  Windows 9x environments

Index: WindowsNT.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/event/impl/src/java/org/apache/excalibur/util/system/WindowsNT.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- WindowsNT.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ WindowsNT.java	10 Apr 2004 22:50:58 -0000	1.2
@@ -16,11 +16,11 @@
  */
 package org.apache.excalibur.util.system;
 
+import org.apache.excalibur.util.CPUParser;
+
 import java.io.BufferedReader;
 import java.io.InputStreamReader;
 
-import org.apache.excalibur.util.CPUParser;
-
 /**
  * Parses the Windows 2000 environment--the same class should work for other
  * Windows versions, but I only have one to test.



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.