If we upgrade from 4.2.0 to 5.0.8, the following will have issue:
Eventually.assertThat(invoking(this).isMBeanReady(1, “a”, “b”), is(true));
public boolean isMBeanReady(int o, String... objName) { return true; }
If I change it to public boolean isMBeanReady(int o, String objName1, String objName2) , then it works.
If we upgrade from 4.2.0 to 5.0.8, the following will have issue: Eventually.assertThat(invoking(this).isMBeanReady(1, “a”, “b”), is(true)); public boolean isMBeanReady(int o, String... objName) { return true; }
If I change it to public boolean isMBeanReady(int o, String objName1, String objName2) , then it works.