File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
src/main/java/org/codehaus/plexus/archiver/diags Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 37
37
@ SuppressWarnings ( "UnusedDeclaration" )
38
38
public class NoOpArchiver implements Archiver
39
39
{
40
+ boolean useJvmChmod ;
41
+ private boolean ignorePermissions ;
42
+
40
43
public void createArchive ()
41
44
throws ArchiverException , IOException
42
45
{
@@ -264,21 +267,21 @@ public void setDuplicateBehavior( String duplicate )
264
267
265
268
public void setUseJvmChmod ( boolean useJvmChmod )
266
269
{
267
-
270
+ this . useJvmChmod = useJvmChmod ;
268
271
}
269
272
270
273
public boolean isUseJvmChmod ()
271
274
{
272
- return false ;
275
+ return useJvmChmod ;
273
276
}
274
277
275
278
public boolean isIgnorePermissions ()
276
279
{
277
- return false ;
280
+ return ignorePermissions ;
278
281
}
279
282
280
283
public void setIgnorePermissions ( boolean ignorePermissions )
281
284
{
282
-
285
+ this . ignorePermissions = ignorePermissions ;
283
286
}
284
287
}
You can’t perform that action at this time.
0 commit comments