diff --git a/libreplan-webapp/src/main/java/org/libreplan/ws/subcontract/impl/SubcontractServiceREST.java b/libreplan-webapp/src/main/java/org/libreplan/ws/subcontract/impl/SubcontractServiceREST.java index b1c662ca5..b6570364e 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/ws/subcontract/impl/SubcontractServiceREST.java +++ b/libreplan-webapp/src/main/java/org/libreplan/ws/subcontract/impl/SubcontractServiceREST.java @@ -329,14 +329,6 @@ public class SubcontractServiceREST implements ISubcontractService { CustomerCommunication customerCommunication = CustomerCommunication .create(deadline, communicationDate, CommunicationType.NEW_PROJECT, order); - if(customerCommunication.getCommunicationType() != null){ - System.out.println(" type before "+ customerCommunication.getCommunicationType().toString()); - }else{ - customerCommunication.setCommunicationType(CommunicationType.NEW_PROJECT); - } customerCommunicationDAO.save(customerCommunication); - if(customerCommunication.getCommunicationType() != null){ - System.out.println(" type after "+ customerCommunication.getCommunicationType().toString()); - } } }