t/oxr_android: Replace full-name qualified with importing for build.gradle

Signed-off-by: utzcoz <utzcoz@outlook.com>
This commit is contained in:
utzcoz 2022-03-12 12:15:28 +08:00 committed by Jakob Bornecrantz
parent 824ebc02de
commit b6e8801ea4

View file

@ -1,3 +1,5 @@
import groovy.xml.XmlUtil
// Copyright 2020, Collabora, Ltd.
// SPDX-License-Identifier: BSL-1.0
@ -39,7 +41,7 @@ project.ext.filterLicense = { String line ->
if (line.trim().isEmpty()) {
return '<br /><br />'
} else {
return groovy.xml.XmlUtil.escapeXml(line)
return XmlUtil.escapeXml(line)
}
}