Update to moasdawiki-server 3.5.0

This commit is contained in:
Herbert Reiter
2022-10-08 20:42:57 +02:00
parent 46be7f77e5
commit 7d18b4bd59
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ android {
} }
dependencies { dependencies {
implementation 'net.moasdawiki:moasdawiki-server:3.4.5' implementation 'net.moasdawiki:moasdawiki-server:3.5.0'
implementation fileTree(include: ['*.jar'], dir: 'libs') implementation fileTree(include: ['*.jar'], dir: 'libs')
// androidx.appcompat:appcompat:1.5.0 causes dependency conflict, waiting for 1.5.1 // androidx.appcompat:appcompat:1.5.0 causes dependency conflict, waiting for 1.5.1
// https://stackoverflow.com/questions/73406969/duplicate-class-androidx-lifecycle-viewmodellazy-found-in-modules-lifecycle-view // https://stackoverflow.com/questions/73406969/duplicate-class-androidx-lifecycle-viewmodellazy-found-in-modules-lifecycle-view
@@ -430,7 +430,7 @@ public class SynchronizeWikiClient {
*/ */
@NotNull @NotNull
private String generateXml(@NotNull AbstractSyncXml xmlBean) throws ServiceException { private String generateXml(@NotNull AbstractSyncXml xmlBean) throws ServiceException {
XmlGenerator xmlGenerator = new XmlGenerator(logger); XmlGenerator xmlGenerator = new XmlGenerator();
return xmlGenerator.generate(xmlBean); return xmlGenerator.generate(xmlBean);
} }