getOlmAccountId is aonly public in the OLM SDK package
This commit is contained in:
parent
b893b81c82
commit
f4ae0d86c9
1 changed files with 1 additions and 2 deletions
|
@ -63,7 +63,6 @@ public class OlmAccount extends CommonSerializeUtils implements Serializable {
|
||||||
*/
|
*/
|
||||||
private transient long mNativeId;
|
private transient long mNativeId;
|
||||||
|
|
||||||
|
|
||||||
public OlmAccount() throws OlmException {
|
public OlmAccount() throws OlmException {
|
||||||
if(!initNewAccount()) {
|
if(!initNewAccount()) {
|
||||||
throw new OlmException(OlmException.EXCEPTION_CODE_INIT_ACCOUNT_CREATION,OlmException.EXCEPTION_MSG_INIT_ACCOUNT_CREATION);
|
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.
|
* Getter on the account ID.
|
||||||
* @return native account ID
|
* @return native account ID
|
||||||
*/
|
*/
|
||||||
public long getOlmAccountId(){
|
long getOlmAccountId(){
|
||||||
return mNativeId;
|
return mNativeId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue