Skip to content

Commit

Permalink
clean (cli): Move CheckedRunnable to correct (newer) package
Browse files Browse the repository at this point in the history
  • Loading branch information
vorburger committed Jun 27, 2024
1 parent 20c74e1 commit 7947b1a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions java/dev/enola/cli/CommandWithResourceProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import com.google.common.collect.ImmutableList;

import dev.enola.common.function.CheckedRunnable;
import dev.enola.common.io.resource.*;

import picocli.CommandLine;
Expand Down
1 change: 1 addition & 0 deletions java/dev/enola/cli/ExtensionsInfoCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
*/
package dev.enola.cli;

import dev.enola.common.function.CheckedRunnable;
import dev.enola.common.io.mediatype.MediaTypeProviders;

import picocli.CommandLine.Command;
Expand Down
2 changes: 1 addition & 1 deletion java/dev/enola/cli/Lifecycle.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ final class Lifecycle {
private static final Logger LOG = LoggerFactory.getLogger(Lifecycle.class);

static void start() {
LOG.info(
LOG.error(
"Hi! \uD83D\uDC4B I'm https://Enola.dev {}. "
+ "\uD83D\uDC7D Resistance \uD83D\uDC7E is futile. We are ONE. "
+ "What's your goal, today?\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dev.enola.cli;
package dev.enola.common.function;

import java.util.concurrent.Callable;

Expand Down

0 comments on commit 7947b1a

Please sign in to comment.