1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

Revert "M #-: Fix 'Unknown type: i8' when using Java OCA (#186)"

This reverts commit bcb57100d15a28274cfb5b441e0c7bf85c65e422.
This commit is contained in:
Ruben S. Montero 2020-10-20 10:57:41 +02:00
parent 0d8b0cfb8d
commit 1b7d47cb0b
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87
3 changed files with 0 additions and 8 deletions

View File

@ -101,11 +101,6 @@ private:
{
return registered_methods.find(call) != registered_methods.end();
}
void setDialect(xmlrpc_dialect dialect)
{
registry.setDialect(dialect);
}
};
//--------------------------------------------------------------------------

View File

@ -205,7 +205,6 @@ public class Client{
}
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
config.setEnabledForExtensions(true);
try
{

View File

@ -662,8 +662,6 @@ void RequestManager::register_xml_methods()
RequestManagerRegistry.addMethod("one.hostpool.info", hostpool_info);
RequestManagerRegistry.addMethod("one.hostpool.monitoring", host_pool_monitoring);
RequestManagerRegistry.setDialect(xmlrpc_dialect_apache);
/* Group related methods */
xmlrpc_c::method * group_allocate_pt;