Skip to content
Snippets Groups Projects
Commit 6beddb5e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unused argument removed

parent 40ffece9
No related branches found
No related tags found
1 merge request!177Small refactor
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
var BioEntity = require("./BioEntity"); var BioEntity = require("./BioEntity");
// noinspection JSUnusedLocalSymbols
var logger = require('../../logger'); var logger = require('../../logger');
/** /**
...@@ -26,7 +27,7 @@ function Alias(javaObject) { ...@@ -26,7 +27,7 @@ function Alias(javaObject) {
} }
if (this._modelId === undefined) { if (this._modelId === undefined) {
throw new Error("ModelId is not defined for alias", javaObject); throw new Error("ModelId is not defined for alias");
} }
if (javaObject.name === undefined) { if (javaObject.name === undefined) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment