|
From: <rm...@hy...> - 2007-03-25 22:45:48
|
Author: rmorgan Date: 2007-03-25 14:45:45 -0800 (Sun, 25 Mar 2007) New Revision: 3898 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3898 Modified: trunk/src/org/hyperic/hq/product/LiveDataPluginManager.java Log: Cleanup. Modified: trunk/src/org/hyperic/hq/product/LiveDataPluginManager.java =================================================================== --- trunk/src/org/hyperic/hq/product/LiveDataPluginManager.java 2007-03-25 22:21:07 UTC (rev 3897) +++ trunk/src/org/hyperic/hq/product/LiveDataPluginManager.java 2007-03-25 22:45:45 UTC (rev 3898) @@ -54,9 +54,8 @@ LiveDataPlugin p = getLiveDataPlugin(type); Object o = p.getData(command, config); - XStream xtream = new XStream(); - - return xtream.toXML(o); + XStream xstream = new XStream(); + return xstream.toXML(o); } public String[] getCommands(String type) |