Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
klahap committed Aug 3, 2024
1 parent 1ba1c72 commit a238961
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/kotlin/DotEnvBuilder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ public class DotEnvBuilder {
private var minor = 0
private val envVariables = mutableListOf<Pair<EnvMap, Priority>>()
private var _systemEnvPriority = Priority(major = 0, minor = 0)
private var systemEnvMinorPriority = 0

public var addSystemEnv: Boolean = false
public var systemEnvPriority: Int
get() = _systemEnvPriority.major
set(value: Int) {
set(value) {
_systemEnvPriority = getPrio(major = value)
}

Expand Down

0 comments on commit a238961

Please sign in to comment.