Removing dead code.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/1.1.x@673485 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Patrick Linskey 2008-07-02 20:27:28 +00:00
parent bad86d848e
commit a299727a72
1 changed files with 0 additions and 24 deletions

View File

@ -228,28 +228,4 @@ public interface Configuration
* Return a copy of this configuration.
*/
public Object clone();
/**
* Modifies a <em>dynamic</em> property of this receiver even when
* {@link #setReadOnly(boolean) frozen}.
*
* @since 1.0.0
*/
// public void modifyDynamic(String property, Object newValue);
//
// /**
// * Affirms if the given property can be modified <em>dynamically</em> i.e.
// * even after the receiver is {@link #setReadOnly(boolean) frozen}.
// *
// * @since 1.0.0
// */
// public boolean isDynamic(String property);
//
// /**
// * Gets the values that can be modified <em>dynamically</em> i.e.
// * even after the receiver is {@link #setReadOnly(boolean) frozen}.
// *
// * @since 1.0.0
// */
// public Value[] getDynamicValues();
}