svn commit: r16353 - trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java
Bob Tarling <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bobtarling
Date: 2008-12-13 16:14:34-0800
New Revision: 16353
Modified:
trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java
Log:
This corrects a typo in my previous work around.
The tests currently fail because seq2 classes are not in the classpath when the tests run.
Testing for the instance of a class before adding them to the translate list will work around this for the time being.
Modified: trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java?view=diff&pathrev=16353&r1=16352&r2=16353
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/PGMLStackParser.java 2008-12-13 16:14:34-0800
@@ -124,7 +124,7 @@
// this may change if we refactor package structure
try {
Class<?> clazz = Class.forName(
- "org.argouml.uml.diagram.sequence.ui.UMLSequenceDiagram");
+ "org.argouml.uml.diagram.sequence2.ui.UMLSequenceDiagram");
addTranslation(
"org.argouml.uml.diagram.sequence.ui.UMLSequenceDiagram",
"org.argouml.uml.diagram.sequence2.ui.UMLSequenceDiagram");
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=983909
To unsubscribe from this discussion, e-mail: [[email protected]].