You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2016/10/10 00:35:21 UTC

incubator-juneau git commit: Fix Jenkins build failure.

Repository: incubator-juneau
Updated Branches:
  refs/heads/master cc399df57 -> 3138d0c7c


Fix Jenkins build failure.

Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/3138d0c7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/3138d0c7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/3138d0c7

Branch: refs/heads/master
Commit: 3138d0c7c8ea77837ce031eec08c51de9bfc0b30
Parents: cc399df
Author: JamesBognar <ja...@apache.org>
Authored: Sun Oct 9 20:35:18 2016 -0400
Committer: JamesBognar <ja...@apache.org>
Committed: Sun Oct 9 20:35:18 2016 -0400

----------------------------------------------------------------------
 .../src/main/java/org/apache/juneau/internal/FileUtils.java      | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/3138d0c7/juneau-core/src/main/java/org/apache/juneau/internal/FileUtils.java
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/java/org/apache/juneau/internal/FileUtils.java b/juneau-core/src/main/java/org/apache/juneau/internal/FileUtils.java
index 9ea8892..62e6238 100644
--- a/juneau-core/src/main/java/org/apache/juneau/internal/FileUtils.java
+++ b/juneau-core/src/main/java/org/apache/juneau/internal/FileUtils.java
@@ -207,6 +207,10 @@ public class FileUtils {
 							ext = getExtension(fileName);
 						return baseName + "_" + l2.toString() + (ext.isEmpty() ? "" : ('.' + ext));
 					}
+					@Override
+					public void remove() {
+						throw new UnsupportedOperationException();
+					}
 				};
 			}
 		};