mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-29 11:06:18 +00:00
t/oxr_android: Replace full-name qualified with importing for build.gradle
Signed-off-by: utzcoz <utzcoz@outlook.com>
This commit is contained in:
parent
824ebc02de
commit
b6e8801ea4
|
@ -1,3 +1,5 @@
|
||||||
|
import groovy.xml.XmlUtil
|
||||||
|
|
||||||
// Copyright 2020, Collabora, Ltd.
|
// Copyright 2020, Collabora, Ltd.
|
||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
|
|
||||||
|
@ -39,7 +41,7 @@ project.ext.filterLicense = { String line ->
|
||||||
if (line.trim().isEmpty()) {
|
if (line.trim().isEmpty()) {
|
||||||
return '<br /><br />'
|
return '<br /><br />'
|
||||||
} else {
|
} else {
|
||||||
return groovy.xml.XmlUtil.escapeXml(line)
|
return XmlUtil.escapeXml(line)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue