|
From: <kc...@us...> - 2003-05-27 02:44:59
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler
In directory sc8-pr-cvs1:/tmp/cvs-serv25940
Modified Files:
MessageServiceHandler.java
Log Message:
remove tab characters
Index: MessageServiceHandler.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler/MessageServiceHandler.java,v
retrieving revision 1.168
retrieving revision 1.169
diff -C2 -d -r1.168 -r1.169
*** MessageServiceHandler.java 21 May 2003 08:12:20 -0000 1.168
--- MessageServiceHandler.java 27 May 2003 02:44:56 -0000 1.169
***************
*** 784,792 ****
(trustedRepo, DELIMITER);
while (listenerDirs.hasMoreTokens()) {
! try {
! File f = new File(listenerDirs.nextToken());
! trustedListenerRepository.add(f.getCanonicalPath());
! }
! catch (IOException e) {}
}
}
--- 784,792 ----
(trustedRepo, DELIMITER);
while (listenerDirs.hasMoreTokens()) {
! try {
! File f = new File(listenerDirs.nextToken());
! trustedListenerRepository.add(f.getCanonicalPath());
! }
! catch (IOException e) {}
}
}
***************
*** 1510,1520 ****
// Not client message listener and it's not using trusted repository
if (clientUrl.getProtocol().equals(MessageListener.PROTOCOL_FILE)) {
! File clientUrlFile = new File(clientUrl.getPath());
! boolean isServerRepository = false;
! try {
! isServerRepository = trustedListenerRepository.contains(
! clientUrlFile.getCanonicalPath());
! }
! catch (IOException e) {}
boolean isClientRepository =
listener instanceof ClientMessageListenerImpl;
--- 1510,1520 ----
// Not client message listener and it's not using trusted repository
if (clientUrl.getProtocol().equals(MessageListener.PROTOCOL_FILE)) {
! File clientUrlFile = new File(clientUrl.getPath());
! boolean isServerRepository = false;
! try {
! isServerRepository = trustedListenerRepository.contains(
! clientUrlFile.getCanonicalPath());
! }
! catch (IOException e) {}
boolean isClientRepository =
listener instanceof ClientMessageListenerImpl;
|