commit | 617a8f61b47d31f710386331b4380ba3c9c93872 | [log] [tgz] |
---|---|---|
author | Liam Miller-Cushon <cushon@google.com> | Tue Mar 02 17:33:27 2021 -0800 |
committer | Javac Team <javac-team+copybara@google.com> | Tue Mar 02 17:33:58 2021 -0800 |
tree | 0ff28b16c687c087110af674deb2a4a9f0f66c98 | |
parent | aabe1f4166b54f2826b08d93f396ac1a9ec16e8e [diff] |
Don't read `<clinit>`s from class files This was causing an error when checking required annotation elements for annotations with `<clinit>`s read from bytecode: ``` error: missing required annotation argument: <clinit> @Foo ``` https://github.com/bazelbuild/bazel/issues/13144 PiperOrigin-RevId: 360553027