unclear error message
a project with 2 modules,
in second module I have this code:
TableConfig tableConfig = config.getTableConfig(table);
I get the error message:
Incompatible Types: Found 'TableConfig', required: 'some.package.TableConfig'
The problem is that config is located in the other module,
and in the OTHER module TableConfig is missing.
-> I would find the following error message more clear:
"cannot determine return type of config.getTableConfig in module XY"
Please sign in to leave a comment.