Tag List Report

The following document contains the listing of user tags found in the code. Below is the summary of the occurrences per tag.

Tag Class Total number of occurrences Tag strings used by tag class
Todo Work 1 todo
Urgent Work 0 fixme

Each tag is detailed below:

Todo Work

Number of occurrences found in the code: 1

fr.in2p3.jsaga.adaptor.lfc.LFCDataAdaptor Line
It seems that doing it induce a problem in the links tests tearDone. I don't know yet why. try { m_lfcConnector.deleteFilesByNames(connection, new String[]{filePath}, true); } catch (IOException e) { logger.debug("ERROR: removeFile("+parentAbsolutePath+", "+fileName+", "+additionalArgs+"): "+e.getMessage()); throw new NoSuccessException(e); } catch (ReceiveException e) { logger.debug("ERROR: removeFile("+parentAbsolutePath+", "+fileName+", "+additionalArgs+"): "+e.getMessage()); if(DMError.EACCES.equals(e.getDMError())){ throw new PermissionDeniedException(e.toString()); }else if(DMError.SETIMEDOUT.equals(e.getDMError())){ throw new TimeoutException(e.getMessage()); }else if (DMError.ENOENT.equals(e.getDMError())) { throw new DoesNotExistException(e); }else{ throw new NoSuccessException(e); } } catch (CNSStatusesException e) { logger.debug("ERROR: removeFile("+parentAbsolutePath+", "+fileName+", "+additionalArgs+"): "+e.getMessage()); if(DMError.EACCES.equals(e.getCNSErrors()[0])){ throw new PermissionDeniedException(e.toString()); }else if(DMError.SETIMEDOUT.equals(e.getCNSErrors()[0])){ throw new TimeoutException(e.getMessage()); }else if (DMError.ENOENT.equals(e.getCNSErrors()[0])) { throw new DoesNotExistException(e); }else{ throw new NoSuccessException(e); } } } 513