CVS: plexus-components/python-factory/src/main/org/apache/plexus/service/repository/factory/python PythonServiceFactory.java,1.2,1.3
| Newsgroups | gmane.comp.java.plexus.devel |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/plexus/plexus-components/python-factory/src/main/org/apache/plexus/service/repository/factory/python
In directory eng.werken.com:/tmp/cvs-serv2532/main/org/apache/plexus/service/repository/factory/python
Modified Files:
PythonServiceFactory.java
Log Message:
o Changing cachedir config
o What's needed to arrive at a unique py system state seems very weird but
without this little fix the properties that are set are not used.
Index: PythonServiceFactory.java
===================================================================
RCS file: /cvsroot/plexus/plexus-components/python-factory/src/main/org/apache/plexus/service/repository/factory/python/PythonServiceFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- PythonServiceFactory.java 24 Apr 2003 01:22:39 -0000 1.2
+++ PythonServiceFactory.java 24 Apr 2003 01:28:20 -0000 1.3
@@ -73,7 +73,7 @@
// This is just the way jython is, don't look at me. You cannot
// create an instance of the system state without initializing first.
- PySystemState.initialize();
+ PySystemState.initialize( pythonSystemStateProperties, null, null );
pythonSystemState = new PySystemState();
pythonSystemState.initialize( pythonSystemStateProperties, null, null );