imario 2004/05/28 12:26:05
Modified: vfs/src/java/org/apache/commons/vfs/provider/webdav
WebdavFileObject.java
Log:
removed enum keyword
Revision Changes Path
1.19 +3 -3
jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java
Index: WebdavFileObject.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- WebdavFileObject.java 27 May 2004 19:09:37 -0000 1.18
+++ WebdavFileObject.java 28 May 2004 19:26:05 -0000 1.19
@@ -136,9 +136,9 @@
setAllowedMethods(optionsMethod.getAllowedMethods());
boolean exists = false;
- for (Enumeration enum = optionsMethod.getAllowedMethods();
enum.hasMoreElements();)
+ for (Enumeration enumeration = optionsMethod.getAllowedMethods();
enumeration.hasMoreElements();)
{
- final String method = (String) enum.nextElement();
+ final String method = (String) enumeration.nextElement();
if (method.equals("GET"))
{
exists = true;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]