Skip to content

Commit

Permalink
wsl: add constructor for adding new distributions in WSLDistributionS…
Browse files Browse the repository at this point in the history
…ervice to have same id and msId

GitOrigin-RevId: d050305929f8b4b32b7c7cc568aa7f5a919ce9d1
  • Loading branch information
segrey authored and intellij-monorepo-bot committed Mar 1, 2021
1 parent 985fba3 commit 95b7b15
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ final class WslDistributionDescriptor {
this(msId, msId, null, msId);
}

WslDistributionDescriptor(@NotNull String msId,
@Nullable String executablePath,
@NotNull String presentableName) {
this(msId, msId, executablePath, presentableName);
}

WslDistributionDescriptor(@NotNull String id,
@NotNull String msId,
@Nullable String executablePath,
Expand Down

0 comments on commit 95b7b15

Please sign in to comment.