diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-11-01 12:54:30 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-11-01 12:54:30 +0000 |
commit | 630b1fc8662fe184b6c8952e1ca732a54bdba260 (patch) | |
tree | f76d4c0014ce95316f9d2d916c0b19bfc7827025 | |
parent | 0029310fa34a2c1a87457ed473cdededce27a01f (diff) | |
download | vaadin-framework-630b1fc8662fe184b6c8952e1ca732a54bdba260.tar.gz vaadin-framework-630b1fc8662fe184b6c8952e1ca732a54bdba260.zip |
#5562 Widgetset build throws an exception while throwing an exception
Changed getCanonicalPath to getPath to avoid exceptions in the exception handler
svn changeset:21852/svn branch:6.7
-rw-r--r-- | src/com/vaadin/terminal/gwt/widgetsetutils/WidgetSetBuilder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetSetBuilder.java b/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetSetBuilder.java index 9b9639d307..2fa90f3e5f 100644 --- a/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetSetBuilder.java +++ b/src/com/vaadin/terminal/gwt/widgetsetutils/WidgetSetBuilder.java @@ -66,7 +66,7 @@ public class WidgetSetBuilder { if (!parent.mkdirs()) { throw new IOException( "Could not create directory for the widgetset: " - + parent.getCanonicalPath()); + + parent.getPath()); } } widgetsetFile.createNewFile(); |