aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/archiva-web
diff options
context:
space:
mode:
authorBrett Porter <brett@apache.org>2008-04-18 07:56:48 +0000
committerBrett Porter <brett@apache.org>2008-04-18 07:56:48 +0000
commiteba490dfb5a99361d6bc4c4123e9c88e4baaf4ae (patch)
tree32f2fca45ba53bb927426b8ee8b7c7e506e515fb /archiva-modules/archiva-web
parentcc0ce2d70709a09bcfafcfbc3e4460f7266d697a (diff)
downloadarchiva-eba490dfb5a99361d6bc4c4123e9c88e4baaf4ae.tar.gz
archiva-eba490dfb5a99361d6bc4c4123e9c88e4baaf4ae.zip
remove unused/unneeded files
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@649397 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-web')
-rw-r--r--archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/maven/archiva/webdav/ArchivaDavSession.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/maven/archiva/webdav/ArchivaDavSession.java b/archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/maven/archiva/webdav/ArchivaDavSession.java
deleted file mode 100644
index 1fa20b042..000000000
--- a/archiva-modules/archiva-web/archiva-webdav/src/main/java/org/apache/maven/archiva/webdav/ArchivaDavSession.java
+++ /dev/null
@@ -1,53 +0,0 @@
-package org.apache.maven.archiva.webdav;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import org.apache.jackrabbit.webdav.DavSession;
-
-/**
- * @author <a href="mailto:james@atlassian.com">James William Dumay</a>
- */
-public class ArchivaDavSession implements DavSession
-{
- public void addReference(Object o)
- {
- throw new UnsupportedOperationException("No yet implemented.");
- }
-
- public void removeReference(Object o)
- {
- throw new UnsupportedOperationException("No yet implemented.");
- }
-
- public void addLockToken(String s)
- {
- throw new UnsupportedOperationException("No yet implemented.");
- }
-
- public String[] getLockTokens()
- {
- throw new UnsupportedOperationException("No yet implemented.");
- }
-
- public void removeLockToken(String s)
- {
- throw new UnsupportedOperationException("No yet implemented.");
- }
-}