Remove all inheritDoc tags from disposeInternal functions
This commit is contained in:
@@ -24,7 +24,7 @@ The second line tells the Closure compiler the type of the argument.
|
||||
|
||||
The third line (`@api`) marks the method as part of the api and thus exportable. Without such an api annotation, the method will not be documented in the generated API documentation. Symbols without an api annotation will also not be exportable.
|
||||
|
||||
The `@api` annotation can be used in conjunction with the `@inheritDoc` annotation to export a symbol that is documented on a parent class (where the method may be abstract). In general, `@api` annotations should never be used on abstract methods (only on their implementations).
|
||||
In general, `@api` annotations should never be used on abstract methods (only on their implementations).
|
||||
|
||||
### Events
|
||||
|
||||
|
||||
@@ -129,7 +129,7 @@ class Geolocation extends BaseObject {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
this.setTracking(false);
|
||||
|
||||
@@ -295,7 +295,7 @@ class MapBrowserEventHandler extends EventTarget {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
if (this.relayedListenerKey_) {
|
||||
|
||||
@@ -498,7 +498,7 @@ class PluggableMap extends BaseObject {
|
||||
|
||||
/**
|
||||
*
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
this.mapBrowserEventHandler_.dispose();
|
||||
|
||||
@@ -130,7 +130,7 @@ class Target extends Disposable {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
clear(this.listeners_);
|
||||
|
||||
@@ -52,7 +52,7 @@ class CanvasVectorImageLayerRenderer extends CanvasImageLayerRenderer {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
this.vectorRenderer_.dispose();
|
||||
|
||||
@@ -68,7 +68,7 @@ class WebGLLayerRenderer extends LayerRenderer {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
this.helper.dispose();
|
||||
|
||||
@@ -567,7 +567,7 @@ class WebGLPointsLayerRenderer extends WebGLLayerRenderer {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
this.worker_.terminate();
|
||||
|
||||
@@ -112,7 +112,7 @@ class ReprojImage extends ImageBase {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
if (this.state == ImageState.LOADING) {
|
||||
|
||||
@@ -402,7 +402,7 @@ class WebGLHelper extends Disposable {
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
* Clean up.
|
||||
*/
|
||||
disposeInternal() {
|
||||
this.canvas_.removeEventListener(ContextEventType.LOST, this.boundHandleWebGLContextLost_);
|
||||
|
||||
@@ -35,9 +35,6 @@ class MockTile extends TileSource {
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
MockTile.prototype.getTile = function(z, x, y) {
|
||||
const key = getKeyZXY(z, x, y);
|
||||
if (this.tileCache.containsKey(key)) {
|
||||
|
||||
Reference in New Issue
Block a user