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()
232
232
{
233
233
return null ;
234
234
}
235
+
236
+ public void remove () {
237
+ throw new UnsupportedOperationException ("remove" );
238
+ }
239
+
235
240
};
236
241
}
237
242
Original file line number Diff line number Diff line change 23
23
import org .codehaus .plexus .components .io .resources .PlexusIoResource ;
24
24
import org .codehaus .plexus .components .io .resources .PlexusIoResourceCollection ;
25
25
import org .codehaus .plexus .util .StringUtils ;
26
- import sun .reflect .generics .reflectiveObjects .NotImplementedException ;
27
26
28
27
import javax .annotation .Nonnull ;
29
28
import java .io .File ;
@@ -225,7 +224,7 @@ public void setDotFileDirectory( final File dotFileDirectory )
225
224
ResourceIterator getResources ()
226
225
throws ArchiverException
227
226
{
228
- throw new NotImplementedException ( );
227
+ throw new RuntimeException ( "Not implemented" );
229
228
}
230
229
231
230
@ SuppressWarnings ( "rawtypes" )
You can’t perform that action at this time.
0 commit comments