Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
segregate projects into their respective classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Laifsyn committed Apr 5, 2024
1 parent 38afa46 commit 97c1b86
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.utp.pry1.app;
package com.utp.clsEstructuraDatos.pry1.app;

import java.io.BufferedReader;
import java.io.InputStreamReader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.utp.pry1.app;
package com.utp.clsEstructuraDatos.pry1.app;

import java.util.ArrayList;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.utp.pry2.app;
package com.utp.clsEstructuraDatos.pry2.app;

import java.util.Optional;

Expand Down Expand Up @@ -34,7 +34,7 @@ void spawn_cli() {

class Utils {
static void pretty_print_int(int num) {
com.utp.pry1.app.Utils.pretty_print_int(num);
com.utp.clsEstructuraDatos.pry1.app.Utils.pretty_print_int(num);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/utp/io_vavrs/Validation.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/

import java.io.Serializable;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.Objects;
import java.util.Optional;
Expand Down Expand Up @@ -793,6 +792,7 @@ public <T8> Builder8<E, T1, T2, T3, T4, T5, T6, T7, T8> combine(Validation<E, T8

}

@SuppressWarnings("unused")
final class Builder8<E, T1, T2, T3, T4, T5, T6, T7, T8> {

private Validation<E, T1> v1;
Expand Down

0 comments on commit 97c1b86

Please sign in to comment.