User: hr Date: 2007-08-03 09:48:19+0000 Modified: dba/reportdesign/java/com/sun/star/report/StorageRepository.java
Log: INTEGRATION: CWS rpt23fix02 (1.2.4); FILE MERGED 2007/07/24 17:19:27 tmorgner 1.2.4.1: Issue number: #78502, #77039 The formatted-text-layout controller did not look for the correct node, and therefore never found the expected 'office:value-type' attribute. This now fixes the #78502 bug, and possibly addresses the #77039 bug as well (although this bug might be connected to a writer-bug). Fixed the repositories so that the StorageRepository does no longer log exceptions whenever we test for an non-existing file. We expect the exception and can safely swallow it here. The FileRepository now maintains its own manifest for all files that are written. This class is needed for all test-runs outside of OpenOffice. File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/ ====================================================== File [changed]: StorageRepository.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/StorageRepository.java?r1=1.2&r2=1.3 Delta lines: +4 -4 ------------------- --- StorageRepository.java 2007-07-09 11:56:04+0000 1.2 +++ StorageRepository.java 2007-08-03 09:48:16+0000 1.3 @@ -113,7 +113,7 @@ } catch (com.sun.star.lang.IllegalArgumentException ex) { ex.printStackTrace(); } catch (NoSuchElementException ex) { - ex.printStackTrace(); + // We expect this exception, no need to log it. } return false; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
