fix: migrate components that I forgot when upgrading java-commons

This commit is contained in:
Johannes Frohnmeyer 2023-11-09 07:55:15 +01:00
parent 7dd1d4dee2
commit 4629d5f68e
Signed by: Johannes
GPG Key ID: E76429612C2929F4
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
package io.gitlab.jfronny.inceptum.cli.commands;
import io.gitlab.jfronny.commons.log.OutputColors;
import io.gitlab.jfronny.commons.logging.OutputColors;
import io.gitlab.jfronny.inceptum.cli.Command;
import io.gitlab.jfronny.inceptum.cli.CommandArgs;
import io.gitlab.jfronny.inceptum.launcher.system.importer.Importers;

View File

@ -5,7 +5,7 @@ import imgui.ImGuiIO;
import imgui.flag.ImGuiConfigFlags;
import imgui.gl3.ImGuiImplGl3;
import imgui.glfw.ImGuiImplGlfw;
import io.gitlab.jfronny.commons.log.*;
import io.gitlab.jfronny.commons.logging.*;
import io.gitlab.jfronny.inceptum.common.*;
import io.gitlab.jfronny.inceptum.common.model.inceptum.UpdateMetadata;
import io.gitlab.jfronny.inceptum.imgui.window.MainWindow;

View File

@ -2,7 +2,7 @@ package io.gitlab.jfronny.inceptum.imgui.control;
import imgui.ImGui;
import imgui.type.*;
import io.gitlab.jfronny.commons.cache.MemoryOperationResultCache;
import io.gitlab.jfronny.commons.io.cache.MemoryOperationResultCache;
import io.gitlab.jfronny.commons.tuple.Tuple;
import io.gitlab.jfronny.inceptum.common.*;
import io.gitlab.jfronny.inceptum.imgui.window.GuiUtil;