79197548

Date: 2024-11-17 15:51:49
Score: 0.5
Natty:
Report link

add throws NoSuchFieldException, SecurityException to method signature like below

@Test
public void test() throws NoSuchFieldException, SecurityException{
        Field treeField = RbtMap.class.getDeclaredField("tree");
        System.out.println(treeField.getName());
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anubhav Sharma