(publicInstance, callerName)
| 1278 | } |
| 1279 | |
| 1280 | function warnNoop(publicInstance, callerName) { |
| 1281 | { |
| 1282 | var constructor = publicInstance.constructor; |
| 1283 | warning(false, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op.\n\nPlease check the code for the %s component.', callerName, callerName, constructor && (constructor.displayName || constructor.name) || 'ReactClass'); |
| 1284 | } |
| 1285 | } |
| 1286 | |
| 1287 | /** |
| 1288 | * This is the abstract API for an update queue. |