Skip to content

Commit

Permalink
feat(objectionary#768): try to reproduce the problem with not found c…
Browse files Browse the repository at this point in the history
…lasses
  • Loading branch information
volodya-lombrozo committed Oct 17, 2024
1 parent 12390f3 commit 729e344
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/it/phi-unphi/src/main/java/org/eolang/hone/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
package org.eolang.hone;

import org.eolang.hone.param.Parameter;

/**
* App.
* @since 0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.hone;
package org.eolang.hone.param;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/eolang/jeo/JeoClassLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public final class JeoClassLoader extends ClassLoader {
* @param classes Classes as file paths.
*/
JeoClassLoader(final ClassLoader parent, final List<String> classes) {
this(parent, prestructor(classes));
this(parent, JeoClassLoader.prestructor(classes));
}

/**
Expand Down

0 comments on commit 729e344

Please sign in to comment.