File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
src/main/java/com/diffplug/gradle/spotless Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3
3
We adhere to the [ keepachangelog] ( https://keepachangelog.com/en/1.0.0/ ) format (starting after version ` 3.27.0 ` ).
4
4
5
5
## [ Unreleased]
6
+ ### Fixed
7
+ * Make ` BaseGroovyExtension ` and ` BaseKotlinExtension ` public. ([ #1912 ] ( https://github.com/diffplug/spotless/pull/1912 ) )
6
8
7
9
## [ 6.23.0] - 2023-11-27
8
10
### Added
Original file line number Diff line number Diff line change 27
27
import com .diffplug .spotless .groovy .RemoveSemicolonsStep ;
28
28
import com .diffplug .spotless .java .ImportOrderStep ;
29
29
30
- abstract class BaseGroovyExtension extends FormatExtension {
30
+ public abstract class BaseGroovyExtension extends FormatExtension {
31
31
protected BaseGroovyExtension (SpotlessExtension spotless ) {
32
32
super (spotless );
33
33
}
Original file line number Diff line number Diff line change 33
33
import com .diffplug .spotless .kotlin .KtLintStep ;
34
34
import com .diffplug .spotless .kotlin .KtfmtStep ;
35
35
36
- abstract class BaseKotlinExtension extends FormatExtension {
36
+ public abstract class BaseKotlinExtension extends FormatExtension {
37
37
protected BaseKotlinExtension (SpotlessExtension spotless ) {
38
38
super (spotless );
39
39
}
You can’t perform that action at this time.
0 commit comments