mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
Proxy: make all methods public
Proxies implement interfaces whose methods *must* be public, as per the specification of the Java language. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
parent
1960081d1a
commit
db0422dcde
@ -368,7 +368,7 @@ public class Proxy {
|
|||||||
{ int i = 0;
|
{ int i = 0;
|
||||||
for (avian.VMMethod m: virtualMap.values()) {
|
for (avian.VMMethod m: virtualMap.values()) {
|
||||||
methodTable[i] = new MethodData
|
methodTable[i] = new MethodData
|
||||||
(0,
|
(Modifier.PUBLIC,
|
||||||
ConstantPool.addUtf8(pool, Classes.toString(m.name)),
|
ConstantPool.addUtf8(pool, Classes.toString(m.name)),
|
||||||
ConstantPool.addUtf8(pool, Classes.toString(m.spec)),
|
ConstantPool.addUtf8(pool, Classes.toString(m.spec)),
|
||||||
makeInvokeCode(pool, name, m.spec, m.parameterCount,
|
makeInvokeCode(pool, name, m.spec, m.parameterCount,
|
||||||
|
Loading…
Reference in New Issue
Block a user