You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/10/19 18:50:13 UTC

svn commit: r826722 - in /commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime: Detachable.java io/Detachable.java io/FileLockImpl.java io/FileStream.java

Author: mturk
Date: Mon Oct 19 16:50:12 2009
New Revision: 826722

URL: http://svn.apache.org/viewvc?rev=826722&view=rev
Log:
Move Detachable to root class path

Added:
    commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Detachable.java
      - copied, changed from r826716, commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/Detachable.java
Removed:
    commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/Detachable.java
Modified:
    commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileLockImpl.java
    commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileStream.java

Copied: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Detachable.java (from r826716, commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/Detachable.java)
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Detachable.java?p2=commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Detachable.java&p1=commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/Detachable.java&r1=826716&r2=826722&rev=826722&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/Detachable.java (original)
+++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Detachable.java Mon Oct 19 16:50:12 2009
@@ -16,7 +16,7 @@
  */
 
 
-package org.apache.commons.runtime.io;
+package org.apache.commons.runtime;
 
 /**
  * The base class for all classes offerering

Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileLockImpl.java
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileLockImpl.java?rev=826722&r1=826721&r2=826722&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileLockImpl.java (original)
+++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileLockImpl.java Mon Oct 19 16:50:12 2009
@@ -17,6 +17,7 @@
 package org.apache.commons.runtime.io;
 
 import org.apache.commons.runtime.Descriptor;
+import org.apache.commons.runtime.Detachable;
 import org.apache.commons.runtime.exception.ClosedDescriptorException;
 import org.apache.commons.runtime.exception.AsyncClosedDescriptorException;
 import org.apache.commons.runtime.exception.InvalidDescriptorException;

Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileStream.java
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileStream.java?rev=826722&r1=826721&r2=826722&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileStream.java (original)
+++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/io/FileStream.java Mon Oct 19 16:50:12 2009
@@ -17,6 +17,7 @@
 package org.apache.commons.runtime.io;
 
 import org.apache.commons.runtime.Descriptor;
+import org.apache.commons.runtime.Detachable;
 import org.apache.commons.runtime.Pointer;
 import org.apache.commons.runtime.exception.ClosedDescriptorException;
 import org.apache.commons.runtime.exception.AsyncClosedDescriptorException;