> emit a lint warning for cases like:
>
> class Test {
> String! m(String s) { return ""; }
> }
> class Sub extends Test {
> @Override
> String m(String s) { return null; }
> }
>
> or:
>
> class Test {
> String m(String! s) { return ""; }
> }
> class Sub extends Test {
> @Override
> String m(String s) { return null; }
> }
Vicente Romero has updated the pull request incrementally with 20 additional
commits since the last revision:
- minor change
- minor change
- removing commented code
- addressing review comments
- minor code change
- adding separate compilation test
- updating tests
- another update
- reducing common code
- adding support for explicit lambdas
- ... and 10 more: https://git.openjdk.org/valhalla/compare/4c1b385b...fd10017d
-------------
Changes:
- all: https://git.openjdk.org/valhalla/pull/2058/files
- new: https://git.openjdk.org/valhalla/pull/2058/files/4c1b385b..fd10017d
Webrevs:
- full: https://webrevs.openjdk.org/?repo=valhalla&pr=2058&range=01
- incr: https://webrevs.openjdk.org/?repo=valhalla&pr=2058&range=00-01
Stats: 277 lines in 6 files changed: 216 ins; 32 del; 29 mod
Patch: https://git.openjdk.org/valhalla/pull/2058.diff
Fetch: git fetch https://git.openjdk.org/valhalla.git pull/2058/head:pull/2058
PR: https://git.openjdk.org/valhalla/pull/2058