Lets use the correct version of toArray so it actually works. And ditch

the extra whitespace.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@1163 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
eric
2003-07-07 18:52:56 +00:00
parent 24a648d258
commit e6c99ce2e8
@@ -1,5 +1,5 @@
// //
// $Id: MACUtil.java,v 1.1 2003/07/07 01:40:59 eric Exp $ // $Id: MACUtil.java,v 1.2 2003/07/07 18:52:56 eric Exp $
package com.samskivert.net; package com.samskivert.net;
@@ -47,7 +47,8 @@ public class MACUtil
while (m.find()) { while (m.find()) {
list.add(m.group(1)); list.add(m.group(1));
} }
return (String[])list.toArray();
return (String[])list.toArray(new String[0]);
} }
/** /**
@@ -69,10 +70,10 @@ public class MACUtil
return output; return output;
} }
} }
return null; return null;
} }
/** /**
* Run the specificed command and return the output as a string. * Run the specificed command and return the output as a string.
*/ */
@@ -83,7 +84,7 @@ public class MACUtil
BufferedReader cin = new BufferedReader( BufferedReader cin = new BufferedReader(
new InputStreamReader(p.getInputStream())); new InputStreamReader(p.getInputStream()));
StringBuffer buffer= new StringBuffer(); StringBuffer buffer= new StringBuffer();
String line = ""; String line = "";
while (line != null) while (line != null)
{ {
@@ -91,7 +92,7 @@ public class MACUtil
line = cin.readLine(); line = cin.readLine();
} }
cin.close(); cin.close();
return buffer.toString(); return buffer.toString();
} catch (IOException e) { } catch (IOException e) {
// don't want to log anything for the client to know what we // don't want to log anything for the client to know what we