Moved deeplinks enum to enums package
This commit is contained in:
parent
3452db63da
commit
fcf4f437e0
62 changed files with 1870 additions and 157 deletions
|
@ -31,6 +31,7 @@
|
|||
|
||||
package net.thauvin.erik.bitly.config.deeplinks
|
||||
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.InstallType
|
||||
import java.util.*
|
||||
|
||||
/**
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
package net.thauvin.erik.bitly.config.deeplinks
|
||||
|
||||
import net.thauvin.erik.bitly.Constants
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.InstallType
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.Os
|
||||
import java.time.ZonedDateTime
|
||||
import java.util.*
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
package net.thauvin.erik.bitly.config.deeplinks
|
||||
package net.thauvin.erik.bitly.config.deeplinks.enums
|
||||
|
||||
/**
|
||||
* Defines the installation types.
|
|
@ -29,7 +29,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
package net.thauvin.erik.bitly.config.deeplinks
|
||||
package net.thauvin.erik.bitly.config.deeplinks.enums
|
||||
|
||||
/**
|
||||
* Defines the operating system types.
|
|
@ -41,8 +41,8 @@ import net.thauvin.erik.bitly.Utils.toEndPoint
|
|||
import net.thauvin.erik.bitly.config.CreateConfig
|
||||
import net.thauvin.erik.bitly.config.UpdateConfig
|
||||
import net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks
|
||||
import net.thauvin.erik.bitly.config.deeplinks.InstallType
|
||||
import net.thauvin.erik.bitly.config.deeplinks.Os
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.InstallType
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.Os
|
||||
import net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks
|
||||
import org.json.JSONObject
|
||||
import org.junit.jupiter.api.BeforeAll
|
||||
|
|
|
@ -34,8 +34,8 @@ package net.thauvin.erik.bitly.config
|
|||
import assertk.assertThat
|
||||
import assertk.assertions.isEqualTo
|
||||
import net.thauvin.erik.bitly.config.deeplinks.CreateDeeplinks
|
||||
import net.thauvin.erik.bitly.config.deeplinks.InstallType
|
||||
import net.thauvin.erik.bitly.config.deeplinks.Os
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.InstallType
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.Os
|
||||
import net.thauvin.erik.bitly.config.deeplinks.UpdateDeeplinks
|
||||
import org.json.JSONObject
|
||||
import kotlin.test.Test
|
||||
|
|
|
@ -36,6 +36,8 @@ import assertk.assertions.contains
|
|||
import assertk.assertions.doesNotContain
|
||||
import assertk.assertions.isEqualTo
|
||||
import assertk.assertions.isNull
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.InstallType
|
||||
import net.thauvin.erik.bitly.config.deeplinks.enums.Os
|
||||
import org.json.JSONObject
|
||||
import org.junit.Test
|
||||
import java.time.ZoneId
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue