Some more small code improvements

This commit is contained in:
Maximilian Krög
2022-08-09 00:10:06 +02:00
parent 5b8d810f80
commit 5fb69b1de1
4 changed files with 5 additions and 15 deletions

View File

@@ -3,14 +3,10 @@
*/
/**
* @return {?} Any return.
* @return {never} Any return.
*/
export function abstract() {
return /** @type {?} */ (
(function () {
throw new Error('Unimplemented abstract method.');
})()
);
throw new Error('Unimplemented abstract method.');
}
/**