Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 85394 invoked from network); 23 Jan 2004 01:26:06 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 23 Jan 2004 01:26:06 -0000 Received: (qmail 16649 invoked by uid 500); 23 Jan 2004 01:25:50 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 16609 invoked by uid 500); 23 Jan 2004 01:25:50 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 16589 invoked by uid 500); 23 Jan 2004 01:25:50 -0000 Delivered-To: apmail-cocoon-2.1-cvs@apache.org Received: (qmail 16585 invoked from network); 23 Jan 2004 01:25:50 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 23 Jan 2004 01:25:50 -0000 Received: (qmail 85364 invoked by uid 1389); 23 Jan 2004 01:26:04 -0000 Date: 23 Jan 2004 01:26:04 -0000 Message-ID: <20040123012604.85363.qmail@minotaur.apache.org> From: crossley@apache.org To: cocoon-2.1-cvs@apache.org Subject: cvs commit: cocoon-2.1/src/blocks/portal/java/org/apache/cocoon/portal/pluto PortalContextProviderImpl.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N crossley 2004/01/22 17:26:04 Modified: src/blocks/portal/java/org/apache/cocoon/portal/pluto PortalContextProviderImpl.java Log: Fix dos2unix line-endings. Revision Changes Path 1.2 +4 -4 cocoon-2.1/src/blocks/portal/java/org/apache/cocoon/portal/pluto/PortalContextProviderImpl.java Index: PortalContextProviderImpl.java =================================================================== RCS file: /home/cvs/cocoon-2.1/src/blocks/portal/java/org/apache/cocoon/portal/pluto/PortalContextProviderImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- PortalContextProviderImpl.java 22 Jan 2004 14:01:21 -0000 1.1 +++ PortalContextProviderImpl.java 23 Jan 2004 01:26:04 -0000 1.2 @@ -94,9 +94,9 @@ /** * Constructor */ - public PortalContextProviderImpl(Map objectModel) { // these are the minimum modes that the portal needs to support this.modes = this.getDefaultModes(); - // these are the minimum states that the portal needs to support this.states = this.getDefaultStates(); - // set info this.info = "Apache Cocoon/1.0"; + public PortalContextProviderImpl(Map objectModel) { // these are the minimum modes that the portal needs to support this.modes = this.getDefaultModes(); + // these are the minimum states that the portal needs to support this.states = this.getDefaultStates(); + // set info this.info = "Apache Cocoon/1.0"; this.properties = new HashMap(); this.init(objectModel); }