Skip to content

Commit

Permalink
Move ServiceHelper to impl
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Sep 24, 2024
1 parent 1b2ed50 commit 5923105
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/

package io.vertx.core.internal;
package io.vertx.core.impl;

import java.util.*;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import io.vertx.core.impl.transports.EpollTransport;
import io.vertx.core.impl.transports.JDKTransport;
import io.vertx.core.impl.transports.KQueueTransport;
import io.vertx.core.internal.ServiceHelper;
import io.vertx.core.internal.VertxBootstrap;
import io.vertx.core.spi.context.executor.EventExecutorProvider;
import io.vertx.core.spi.file.FileResolver;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import io.vertx.core.*;
import io.vertx.core.impl.deployment.Deployment;
import io.vertx.core.internal.ServiceHelper;
import io.vertx.core.impl.ServiceHelper;
import io.vertx.core.impl.*;
import io.vertx.core.impl.deployment.DeploymentContext;
import io.vertx.core.impl.deployment.DeploymentManager;
Expand Down
2 changes: 1 addition & 1 deletion vertx-core/src/main/java/io/vertx/core/spi/Utils.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.vertx.core.spi;

import io.vertx.core.internal.ServiceHelper;
import io.vertx.core.impl.ServiceHelper;
import io.vertx.core.json.jackson.JacksonFactory;

import java.util.ArrayList;
Expand Down
2 changes: 1 addition & 1 deletion vertx-core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@

// Testing

exports io.vertx.core.impl to io.vertx.core.tests;
exports io.vertx.core.impl.cpu to io.vertx.core.tests;
exports io.vertx.core.impl.future to io.vertx.core.tests;
exports io.vertx.core.impl.utils to io.vertx.core.tests;
Expand All @@ -115,5 +114,6 @@
exports io.vertx.core.spi.cluster.impl.selector to io.vertx.core.tests;
exports io.vertx.core.impl.verticle to io.vertx.core.tests;
exports io.vertx.core.impl.deployment to io.vertx.core.tests;
exports io.vertx.core.impl;

}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

package io.vertx.it.servicehelper;

import io.vertx.core.internal.ServiceHelper;
import io.vertx.core.impl.ServiceHelper;
import io.vertx.test.core.TestUtils;
import org.junit.Test;

Expand Down

0 comments on commit 5923105

Please sign in to comment.