mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-18 21:42:05 +01:00
DetachedVerifyExternal: Make certs set final
This commit is contained in:
parent
790d80ec29
commit
0aabfac695
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public class DetachedVerifyExternal implements DetachedVerify {
|
|||
private final List<String> commandList = new ArrayList<>();
|
||||
private final List<String> envList;
|
||||
|
||||
private Set<InputStream> certs = new HashSet<>();
|
||||
private final Set<InputStream> certs = new HashSet<>();
|
||||
private InputStream signatures;
|
||||
private int certCounter = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue