svn commit: r16275 - trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java
Tom Morris <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2008-12-07 12:34:17-0800
New Revision: 16275
Modified:
trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java
Log:
Remove deprecated methods
Modified: trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java?view=diff&pathrev=16275&r1=16274&r2=16275
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java (original)
+++ trunk/src/argouml-app/src/org/argouml/persistence/PersistenceManager.java 2008-12-07 12:34:17-0800
@@ -78,10 +78,6 @@
private AbstractFilePersister savePersister;
- private boolean lastLoadStatus = true;
-
- private String lastLoadMessage;
-
/**
* The configuration key for the project file location.
*/
@@ -396,57 +392,8 @@
return true;
}
- /**
- * Get the last message which caused loading to fail. Used for junit tests.
- *
- * @return the last message which caused loading to fail
- * @deprecated for 0.25.5 by tfmorris. Persisters all throw exceptions if
- * they failed to complete successfully. If no exception was
- * thrown, the load succeeded.
- */
- @Deprecated
- public String getLastLoadMessage() {
- return lastLoadMessage;
- }
/**
- * Set the last load message. Used for junit tests.
- *
- * @param msg the last load message
- * @deprecated for 0.25.5 by tfmorris. Persisters all throw exceptions if
- * they failed to complete successfully. If no exception was
- * thrown, the load succeeded.
- */
- @Deprecated
- public void setLastLoadMessage(String msg) {
- lastLoadMessage = msg;
- }
-
- /**
- * @return the status of the last load attempt. Used for junit tests.
- * @deprecated for 0.25.5 by tfmorris. Persisters all throw exceptions if
- * they failed to complete successfully. If no exception was
- * thrown, the load succeeded.
- */
- @Deprecated
- public boolean getLastLoadStatus() {
- return lastLoadStatus;
- }
-
- /**
- * Set the status of the last load attempt. Used for junit tests.
- *
- * @param status the status of the last load attempt
- * @deprecated for 0.25.5 by tfmorris. Persisters all throw exceptions if
- * they failed to complete successfully. If no exception was
- * thrown, the load succeeded.
- */
- @Deprecated
- public void setLastLoadStatus(boolean status) {
- lastLoadStatus = status;
- }
-
- /**
* Sets the currently used persister for saving.
*
* @param persister the persister
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=980875
To unsubscribe from this discussion, e-mail: [[email protected]].