Polish quote styles in gradle files

Replace singe quote-marks with double quote-marks when possible for a
more consistent style.
This commit is contained in:
Phillip Webb
2012-12-06 13:40:53 -08:00
parent a268528726
commit 90cfdbb040
6 changed files with 221 additions and 211 deletions

View File

@@ -2,6 +2,6 @@ import org.gradle.plugins.ide.eclipse.model.ProjectDependency
// SPR-10042
eclipse.classpath.file.whenMerged { classpath ->
def projectName = 'spring-webmvc-tiles3'
def projectName = "spring-webmvc-tiles3"
classpath.entries.add(0, new ProjectDependency("/${projectName}", project(":${projectName}").path))
}