[SPR-8549] Documented the equals() method implementation in MergedContextConfiguration.
This commit is contained in:
parent
461119973b
commit
072271d9e9
|
|
@ -176,9 +176,11 @@ public class MergedContextConfiguration implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Document equals() implementation.
|
* Determine if the supplied object is equal to this {@code MergedContextConfiguration}
|
||||||
*
|
* instance by comparing both object's {@link #getLocations() locations},
|
||||||
* @see java.lang.Object#equals(java.lang.Object)
|
* {@link #getClasses() configuration classes}, {@link #getActiveProfiles()
|
||||||
|
* active profiles}, and the fully qualified names of their
|
||||||
|
* {@link #getContextLoader() ContextLoaders}.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue