getOlmAccountId is aonly public in the OLM SDK package

release-v2.2.0
ylecollen 2017-01-02 15:28:42 +01:00
parent b893b81c82
commit f4ae0d86c9
1 changed files with 1 additions and 2 deletions

View File

@ -63,7 +63,6 @@ public class OlmAccount extends CommonSerializeUtils implements Serializable {
*/
private transient long mNativeId;
public OlmAccount() throws OlmException {
if(!initNewAccount()) {
throw new OlmException(OlmException.EXCEPTION_CODE_INIT_ACCOUNT_CREATION,OlmException.EXCEPTION_MSG_INIT_ACCOUNT_CREATION);
@ -162,7 +161,7 @@ public class OlmAccount extends CommonSerializeUtils implements Serializable {
* Getter on the account ID.
* @return native account ID
*/
public long getOlmAccountId(){
long getOlmAccountId(){
return mNativeId;
}