Prefer single-quoted (non-interpolated) strings where sufficient

This commit is contained in:
Ben Liblit 2018-01-15 22:11:58 -06:00
parent be8f22145e
commit e32b495354
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ def versionedArchive = 'ajaxslt-0.8.1'
def packedArchive = "${versionedArchive}.tar.gz"
task downloadJLex(type: Download) {
src "http://www.cs.princeton.edu/~appel/modern/java/JLex/current/Main.java"
src 'http://www.cs.princeton.edu/~appel/modern/java/JLex/current/Main.java'
dest 'src/JLex/Main.java'
overwrite false
}

View File

@ -92,5 +92,5 @@ model {
test {
// TODO: compute path on following line from 'xlator_test' library properties somehow
systemProperty "java.library.path", "$buildDir/libs/xlator_test/shared"
systemProperty 'java.library.path', "$buildDir/libs/xlator_test/shared"
}