lucene
1918
Anomaly identified by the detector. Please review whether this anomaly corresponds to a misuse.
19
org/apache/lucene/index/SegmentReader.java
clone()
class SegmentReader { public final synchronized Object clone() { try { return clone(readOnly); // Preserve current readOnly } catch (Exception ex) { throw new RuntimeException(ex); } } }
CN: org.apache.lucene.index.SegmentReader.clone() does not call super.clone()
CN_IDIOM_NO_SUPER_CALL