[Laszlo-checkins] r7888 - openlaszlo/trunk/WEB-INF/lps/server/src/org/openlaszlo/js2doc
dda@openlaszlo.org
dda at openlaszlo.org
Fri Jan 25 11:09:15 PST 2008
Author: dda
Date: 2008-01-25 11:09:08 -0800 (Fri, 25 Jan 2008)
New Revision: 7888
Modified:
openlaszlo/trunk/WEB-INF/lps/server/src/org/openlaszlo/js2doc/Main.java
Log:
Change 20080125-dda-n by dda at lester.local on 2008-01-25 12:03:10 EST
in /Users/dda/laszlo/src/svn/openlaszlo/trunk-nightly
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Remove distracting non-error from js2doc --test mode.
New Features:
Bugs Fixed: LPP-5378
Technical Reviewer: ptw (pending)
QA Reviewer: mayme (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
A simple coding bug causes the 'error' to be produced.
Tests:
Modified: openlaszlo/trunk/WEB-INF/lps/server/src/org/openlaszlo/js2doc/Main.java
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/server/src/org/openlaszlo/js2doc/Main.java 2008-01-25 17:09:38 UTC (rev 7887)
+++ openlaszlo/trunk/WEB-INF/lps/server/src/org/openlaszlo/js2doc/Main.java 2008-01-25 19:09:08 UTC (rev 7888)
@@ -3,7 +3,7 @@
* ****************************************************************************/
/* J_LZ_COPYRIGHT_BEGIN *******************************************************
-* Copyright 2006-2007 Laszlo Systems, Inc. All Rights Reserved. *
+* Copyright 2006-2008 Laszlo Systems, Inc. All Rights Reserved. *
* Use is subject to license terms. *
* J_LZ_COPYRIGHT_END *********************************************************/
@@ -236,7 +236,7 @@
Set runtimeOptions,
List runtimeAliases,
List buildOptions) {
- boolean result = false;
+ boolean result = true;
try {
File sourceFile = new File(sourceName);
String sourceContents = FileUtils.readFileString(sourceFile);
@@ -249,6 +249,7 @@
String expect = FileUtils.readFileString(expectFile);
} catch (java.io.IOException exc) {
+ result = false;
exc.printStackTrace();
}
More information about the Laszlo-checkins
mailing list