Skip to content
Snippets Groups Projects
Commit 34a04579 authored by brinn's avatar brinn
Browse files

merged from from datamover/1.0.x, r2787

add: check if thread has been interrupted and throw exception if it has been

SVN: 2860
parent 2736d508
No related branches found
No related tags found
No related merge requests found
...@@ -438,6 +438,8 @@ public final class FileUtilities ...@@ -438,6 +438,8 @@ public final class FileUtilities
* @return The time when any file in (or below) <var>path</var> has last been changed in the file system. * @return The time when any file in (or below) <var>path</var> has last been changed in the file system.
* @throws CheckedExceptionTunnel of an {@link IOException} if the <var>path</var> does not exist or is not * @throws CheckedExceptionTunnel of an {@link IOException} if the <var>path</var> does not exist or is not
* readable. * readable.
* @throws CheckedExceptionTunnel of an {@link InterruptedException} if the thread that the method runs in gets
* interrupted.
*/ */
public static long lastChanged(File path) public static long lastChanged(File path)
{ {
...@@ -454,6 +456,10 @@ public final class FileUtilities ...@@ -454,6 +456,10 @@ public final class FileUtilities
{ {
for (File subDirectory : getSubDirectories(path)) for (File subDirectory : getSubDirectories(path))
{ {
if (Thread.interrupted())
{
throw new CheckedExceptionTunnel(new InterruptedException("lastChanged() interrupted"));
}
lastChanged = Math.max(lastChanged, lastChanged(subDirectory)); lastChanged = Math.max(lastChanged, lastChanged(subDirectory));
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment