Skip to content

Commit

Permalink
cambio de estructura de packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Martín Pizarro committed Aug 11, 2024
1 parent 9b937e7 commit bf540ad
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ build/
### Mac OS ###
.DS_Store

src/main/java/com/github/martinpiz097/electrolist/testing
src/main/java/org/mpizutil/electrolist/testing
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.martinpiz097</groupId>
<groupId>org.mpizutil</groupId>
<artifactId>electrolist</artifactId>
<version>3.0</version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.github.martinpiz097.electrolist.search;
package org.mpizutil.electrolist.search;

import java.util.function.Predicate;

import com.github.martinpiz097.electrolist.structure.ElectroList;
import org.mpizutil.electrolist.structure.ElectroList;

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.github.martinpiz097.electrolist.search;
package org.mpizutil.electrolist.search;

import com.github.martinpiz097.electrolist.structure.ElectroList;
import com.github.martinpiz097.electrolist.structure.Node;
import org.mpizutil.electrolist.structure.ElectroList;
import org.mpizutil.electrolist.structure.Node;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.github.martinpiz097.electrolist.search;
package org.mpizutil.electrolist.search;

import com.github.martinpiz097.electrolist.structure.ElectroList;
import org.mpizutil.electrolist.structure.ElectroList;

import java.util.function.Predicate;
import java.util.stream.Stream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.github.martinpiz097.electrolist.structure;
package org.mpizutil.electrolist.structure;

import com.github.martinpiz097.electrolist.search.TSearcherManager;
import org.mpizutil.electrolist.search.TSearcherManager;

//import java.io.Serial;
import java.io.Serial;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.github.martinpiz097.electrolist.structure;
package org.mpizutil.electrolist.structure;

import java.io.Serializable;
import java.util.logging.Level;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.martinpiz097.electrolist.structure;
package org.mpizutil.electrolist.structure;


import java.io.UnsupportedEncodingException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.github.martinpiz097.electrolist.structure;
package org.mpizutil.electrolist.structure;

import java.util.List;
import java.util.function.Predicate;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/structure/ElectroListTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
package structure;

import com.github.martinpiz097.electrolist.structure.ElectroList;
import org.mpizutil.electrolist.structure.ElectroList;
import org.junit.jupiter.api.*;

import java.util.*;
Expand Down

0 comments on commit bf540ad

Please sign in to comment.