From: David ‘Bombe’ Roden Date: Mon, 19 Jan 2009 22:37:20 +0000 (+0100) Subject: Change writing of “key store”. X-Git-Url: https://git.pterodactylus.net/?p=jkeytool.git;a=commitdiff_plain;h=53bf54420ffdc6a60acc74468a93f39f8a58596d Change writing of “key store”. --- diff --git a/src/net/pterodactylus/jkeytool/core/CoreListener.java b/src/net/pterodactylus/jkeytool/core/CoreListener.java index 7380649..54c2ae7 100644 --- a/src/net/pterodactylus/jkeytool/core/CoreListener.java +++ b/src/net/pterodactylus/jkeytool/core/CoreListener.java @@ -31,20 +31,20 @@ import java.util.EventListener; public interface CoreListener extends EventListener { /** - * Notifies all listeners that a keystore was loaded from a file. + * Notifies all listeners that a key store was loaded from a file. * * @param keyStoreFile - * The keystore file + * The key store file * @param keyStore - * The loaded keystore + * The loaded key store */ public void keyStoreLoaded(File keyStoreFile, KeyStore keyStore); /** - * Notifies all listeners that a keystore file could not be loaded. + * Notifies all listeners that a key store file could not be loaded. * * @param keyStoreFile - * The keystore file + * The key store file */ public void keyStoreNotLoaded(File keyStoreFile);