mergeOnWrite method
AFRouteParam
mergeOnWrite(
- AFRouteParam oldParam
inherited
Provides an opportunity to merge this new param with an old param when you update a route parameter that already exists.
By default, just returns this, meaning that writes are just straight replacements.
Implementation
AFRouteParam mergeOnWrite(AFRouteParam oldParam) {
return this;
}