mirror of https://github.com/apache/lucene.git
static utility classes in SystemInfoHandler don't need to be private
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@543771 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
37816d294d
commit
404e9ef4c1
|
@ -99,7 +99,7 @@ public class SystemInfoHandler extends RequestHandlerBase
|
|||
/**
|
||||
* Get system info
|
||||
*/
|
||||
private static SimpleOrderedMap<Object> getSystemInfo() throws Exception
|
||||
public static SimpleOrderedMap<Object> getSystemInfo() throws Exception
|
||||
{
|
||||
SimpleOrderedMap<Object> info = new SimpleOrderedMap<Object>();
|
||||
|
||||
|
@ -183,7 +183,7 @@ public class SystemInfoHandler extends RequestHandlerBase
|
|||
/**
|
||||
* Get JVM Info - including memory info
|
||||
*/
|
||||
private static SimpleOrderedMap<Object> getJvmInfo()
|
||||
public static SimpleOrderedMap<Object> getJvmInfo()
|
||||
{
|
||||
SimpleOrderedMap<Object> jvm = new SimpleOrderedMap<Object>();
|
||||
jvm.add( "version", System.getProperty("java.vm.version") );
|
||||
|
|
Loading…
Reference in New Issue