File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
buildSrc/src/main/kotlin/datadog/gradle/plugin/config
utils/config-utils/src/main/java/datadog/trace/config/inversion Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ abstract class ParseV2SupportedConfigurationsTask @Inject constructor(
105105 outFile.parentFile?.mkdirs()
106106
107107 PrintWriter (outFile).use { out ->
108- // NOTE: adjust these if you want to match task's className
109108 out .println (" package $packageName ;" )
110109 out .println ()
111110 out .println (" import java.util.*;" )
Original file line number Diff line number Diff line change @@ -22,23 +22,23 @@ public SupportedConfiguration(
2222 this .propertyKeys = propertyKeys ;
2323 }
2424
25- public String getVersion () {
25+ public String version () {
2626 return version ;
2727 }
2828
29- public String getType () {
29+ public String type () {
3030 return type ;
3131 }
3232
33- public String getDefaultValue () {
33+ public String defaultValue () {
3434 return defaultValue ;
3535 }
3636
37- public List <String > getAliases () {
37+ public List <String > aliases () {
3838 return aliases ;
3939 }
4040
41- public List <String > getPropertyKeys () {
41+ public List <String > propertyKeys () {
4242 return propertyKeys ;
4343 }
4444}
You can’t perform that action at this time.
0 commit comments