Skip to content

Commit

Permalink
Reorder methods
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed Jun 9, 2024
1 parent cc1d9ab commit 6b75d96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/groovy/nu/studer/gradle/jooq/JooqConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ private Configuration jooqDefaultConfiguration() {
)
);
}


public String getName() {
return name;
}

public Configuration getJooqConfiguration() {
return jooqConfiguration;
}
Expand All @@ -61,10 +65,6 @@ public Property<Boolean> getGenerateSchemaSourceOnCompilation() {
return generateSchemaSourceOnCompilation;
}

public String getName() {
return name;
}

public Provider<Directory> getOutputDir() {
return outputDir;
}
Expand Down

0 comments on commit 6b75d96

Please sign in to comment.