Lint removal

This commit is contained in:
Tim Schaub
2018-07-16 17:57:57 -06:00
parent f78d0d4cfa
commit d0ab8dce38
63 changed files with 2945 additions and 2917 deletions
+7 -7
View File
@@ -12,16 +12,16 @@ import WebGLShader from '../webgl/Shader.js';
* @struct
*/
class WebGLFragment {
constructor(source) {
WebGLShader.call(this, source);
}
constructor(source) {
WebGLShader.call(this, source);
}
/**
/**
* @inheritDoc
*/
getType() {
return FRAGMENT_SHADER;
}
getType() {
return FRAGMENT_SHADER;
}
}
inherits(WebGLFragment, WebGLShader);