[ 1659217 ] WAN: org.compiere.db.CConnection.getInfo() throws NPE
This commit is contained in:
parent
a82fd8bd6b
commit
cb075025a3
|
@ -1200,8 +1200,8 @@ public class CConnection implements Serializable
|
||||||
*/
|
*/
|
||||||
public String getInfo ()
|
public String getInfo ()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer (m_info[0]);
|
StringBuffer sb = new StringBuffer (m_info[0] != null ? m_info[0] : "");
|
||||||
sb.append (" - ").append (m_info[1])
|
sb.append (" - ").append (m_info[1] != null ? m_info[1] : "")
|
||||||
.append ("\n").append (getDatabase ().toString ())
|
.append ("\n").append (getDatabase ().toString ())
|
||||||
.append ("\nAppsServerOK=").append (isAppsServerOK (false))
|
.append ("\nAppsServerOK=").append (isAppsServerOK (false))
|
||||||
.append (", DatabaseOK=").append (isDatabaseOK ());
|
.append (", DatabaseOK=").append (isDatabaseOK ());
|
||||||
|
|
Loading…
Reference in New Issue