LGTM On Fri, May 29, 2009 at 3:09 PM, <[email protected]> wrote: > Reviewers: kprobst, > > Description: > I missed a case when adding -out to SoycDashboard, so one of the files > goes to the current directory rather than to the -out directory. > > > > Please review this at http://gwt-code-reviews.appspot.com/33834 > > Affected files: > tools/soyc-vis/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java > > > Index: tools/soyc-vis/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java > =================================================================== > --- tools/soyc-vis/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java > (revision 5473) > +++ tools/soyc-vis/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java > (working copy) > @@ -101,7 +101,7 @@ > } > if ((jarEntry.getName().compareTo(inputFileName) != 0) > && (jarEntry.getName().startsWith(inputFileName))) { > - File newDstPath = new File(jarEntry.getName()); > + File newDstPath = getOutFile(jarEntry.getName()); > copyFileOrDirectoryFromJar(jarFileName, jarEntry.getName(), > newDstPath, false); > } > > >
--~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
