Skip to content

Commit

Permalink
Refactor package
Browse files Browse the repository at this point in the history
  • Loading branch information
Revxrsal committed Jan 27, 2024
1 parent 4d90166 commit f90652a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
`maven-publish`
}

group = "io.revxrsal"
group = "revxrsal"
version = "1.0"

repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.revxrsal.autolaunch;
package revxrsal.autolaunch;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Unmodifiable;
Expand All @@ -9,7 +9,7 @@
import java.util.Collections;
import java.util.List;

import static io.revxrsal.autolaunch.Utils.notNull;
import static revxrsal.autolaunch.Utils.notNull;

/**
* The entrypoint class for creating and configuring applications
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.revxrsal.autolaunch;
package revxrsal.autolaunch;

import org.jetbrains.annotations.NotNull;

Expand All @@ -7,7 +7,7 @@
import java.nio.file.Path;
import java.nio.file.Paths;

import static io.revxrsal.autolaunch.Utils.sneakyThrow;
import static revxrsal.autolaunch.Utils.sneakyThrow;

/**
* The {@link PlatformAutoLaunch} implementation for Linux
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.revxrsal.autolaunch;
package revxrsal.autolaunch;

import org.jetbrains.annotations.NotNull;

Expand All @@ -11,7 +11,7 @@
import java.util.List;
import java.util.stream.Collectors;

import static io.revxrsal.autolaunch.Utils.sneakyThrow;
import static revxrsal.autolaunch.Utils.sneakyThrow;

/**
* The {@link PlatformAutoLaunch} implementation for macOS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.revxrsal.autolaunch;
package revxrsal.autolaunch;

enum OperatingSystem {
LINUX,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.revxrsal.autolaunch;
package revxrsal.autolaunch;

import org.jetbrains.annotations.NotNull;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.revxrsal.autolaunch;
package revxrsal.autolaunch;

import org.jetbrains.annotations.Contract;
import org.jetbrains.annotations.NotNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.revxrsal.autolaunch;
package revxrsal.autolaunch;

import com.sun.jna.platform.win32.Win32Exception;
import org.jetbrains.annotations.NotNull;
Expand Down

0 comments on commit f90652a

Please sign in to comment.