Skip to content

Commit

Permalink
core: remove unused MutablePath type alias
Browse files Browse the repository at this point in the history
  • Loading branch information
nesk committed Oct 27, 2023
1 parent 4393e9c commit b5384b2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### ⚠️ Breaking changes

- The `Configuration` class is now instantiated through a builder DSL ([#13](https://github.com/nesk/akkurate/issues/13))
- Remove unused `MutablePath` type alias

### Added

Expand Down
1 change: 0 additions & 1 deletion library/src/jvmMain/kotlin/dev/nesk/akkurate/Path.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ package dev.nesk.akkurate
import dev.nesk.akkurate.validatables.Validatable

public typealias Path = List<String>
public typealias MutablePath = MutableList<String>

public class PathBuilder(private val validatable: Validatable<*>) {
public fun absolute(vararg pathSegments: String): Path = pathSegments.toList()
Expand Down

0 comments on commit b5384b2

Please sign in to comment.