Fixed issue in previous commit

This commit is contained in:
Sylvain Berfini 2018-04-06 12:15:14 +02:00
parent 2f550cd5df
commit 0bf5362bf0

View file

@ -95,6 +95,11 @@ public {{#isLinphoneFactory}}abstract class{{/isLinphoneFactory}}{{#isNotLinphon
abstract public OpenH264DownloadHelper createOpenH264DownloadHelper(Context context);
/**
* Gets the LoggingService singleton
*/
abstract public LoggingService getLoggingService();
abstract public void setDebugMode(boolean enable, String tag);
abstract public Core getCore(long ptr);
@ -127,11 +132,6 @@ public {{#isLinphoneFactory}}abstract class{{/isLinphoneFactory}}{{#isNotLinphon
* Gets the object stored in this object user's data
*/
{{#isLinphoneFactory}}abstract {{/isLinphoneFactory}}public Object getUserData();
/**
* Gets the object stored in this object user's data
*/
abstract public LoggingService getLoggingService();
}
class {{classImplName}} {{#isLinphoneFactory}}extends{{/isLinphoneFactory}}{{#isNotLinphoneFactory}}implements{{/isNotLinphoneFactory}} {{className}} {