warning en moins

This commit is contained in:
Rochas
2024-12-19 22:00:36 +01:00
parent e43ecc8cfe
commit a680ed5cd6
5 changed files with 0 additions and 21 deletions

View File

@@ -1,8 +1,6 @@
package src.fr.impl.Parts;
import src.fr.impl.CategoryImpl;
import src.fr.impl.PartImpl;
import src.fr.impl.PartTypeImpl;
public class Engine extends PartImpl {
/*public Engine(String name, CategoryImpl category, int price){

View File

@@ -2,9 +2,7 @@ package src.fr.impl.Parts;
import java.util.HashSet;
import java.util.Set;
import src.fr.impl.CategoryImpl;
import src.fr.impl.PartImpl;
import src.fr.impl.PartTypeImpl;
public class Exterior extends PartImpl {

View File

@@ -2,10 +2,7 @@ package src.fr.impl.Parts;
import java.util.HashSet;
import java.util.Set;
import src.fr.impl.CategoryImpl;
import src.fr.impl.PartImpl;
import src.fr.impl.PartTypeImpl;

View File

@@ -1,8 +1,6 @@
package src.fr.impl.Parts;
import src.fr.impl.CategoryImpl;
import src.fr.impl.PartImpl;
import src.fr.impl.PartTypeImpl;
public class Transmission extends PartImpl {
/*public Transmission(String name, CategoryImpl category, int price){

View File

@@ -1,16 +1,4 @@
package src.fr.test;
import java.util.Set;
import java.util.HashSet;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import src.fr.impl.*;
import src.fr.impl.Parts.*;
import src.fr.api.*;
public class testV2_PT {