it removes unnecessary prints of text.

This commit is contained in:
Susana Montes Pedreira 2011-11-23 17:31:07 +01:00
parent bfcbcc3011
commit 47e6533022

View file

@ -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());
}
}
}