Changeset 6057
- Timestamp:
- 11/14/11 12:54:09 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pustefix-core/src/main/java/de/schlund/pfixxml/targets/TargetGenerator.java
r6035 r6057 61 61 import org.xml.sax.helpers.XMLReaderFactory; 62 62 63 import de.schlund.pfixcore.exception.PustefixRuntimeException;64 63 import de.schlund.pfixcore.util.Meminfo; 65 64 import de.schlund.pfixcore.workflow.SiteMap; … … 773 772 774 773 public void visit(Resource resource) { 775 IncludePartsInfo info ;774 IncludePartsInfo info = null; 776 775 try { 777 776 info = includePartsInfo.getIncludePartsInfo(resource); 778 777 } catch (IncludePartsInfoParsingException e) { 779 throw new PustefixRuntimeException("Error while trying to parse include parts " +778 LOG.error("Error while trying to parse include parts " + 780 779 "in " + "resource '" + resource.toURI() + "'.", e); 781 780 }
