src/share/classes/com/sun/imageio/plugins/jpeg/MarkerSegment.java

Print this page
rev 9292 : 8033716: Fix raw and unchecked lint warnings in com.sun.imageio
Reviewed-by: darcy, prr

*** 111,121 **** } /** * Deep copy of data array. */ ! protected Object clone() { MarkerSegment newGuy = null; try { newGuy = (MarkerSegment) super.clone(); } catch (CloneNotSupportedException e) {} // won't happen if (this.data != null) { --- 111,121 ---- } /** * Deep copy of data array. */ ! protected MarkerSegment clone() { MarkerSegment newGuy = null; try { newGuy = (MarkerSegment) super.clone(); } catch (CloneNotSupportedException e) {} // won't happen if (this.data != null) {