OutputStream fos = null;
try {
final PGPPublicKeyRingCollection newCollection = new PGPPublicKeyRingCollection(
stillTrusted);
fos = new FileOutputStream(ROO_PGP_FILE);
newCollection.encode(fos);
}
catch (final Exception e) {
throw new IllegalStateException(e);
}
finally {