File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/main/java/org/codehaus/plexus/archiver/diags Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -232,6 +232,11 @@ public ArchiveEntry next()
232232 {
233233 return null ;
234234 }
235+
236+ public void remove () {
237+ throw new UnsupportedOperationException ("remove" );
238+ }
239+
235240 };
236241 }
237242
Original file line number Diff line number Diff line change 2323import org .codehaus .plexus .components .io .resources .PlexusIoResource ;
2424import org .codehaus .plexus .components .io .resources .PlexusIoResourceCollection ;
2525import org .codehaus .plexus .util .StringUtils ;
26- import sun .reflect .generics .reflectiveObjects .NotImplementedException ;
2726
2827import javax .annotation .Nonnull ;
2928import java .io .File ;
@@ -225,7 +224,7 @@ public void setDotFileDirectory( final File dotFileDirectory )
225224 ResourceIterator getResources ()
226225 throws ArchiverException
227226 {
228- throw new NotImplementedException ( );
227+ throw new RuntimeException ( "Not implemented" );
229228 }
230229
231230 @ SuppressWarnings ( "rawtypes" )
You can’t perform that action at this time.
0 commit comments