* @param publicKey
* The public key of the project
*/
- public void setPublicKey(String publicKey) {
+ void setPublicKey(String publicKey) {
String oldPublicKey = this.publicKey;
this.publicKey = publicKey;
fireIfPropertyChanged(PROPERTY_PUBLIC_KEY, oldPublicKey, publicKey);
* @param privateKey
* The private key of the project
*/
- public void setPrivateKey(String privateKey) {
+ void setPrivateKey(String privateKey) {
String oldPrivateKey = this.privateKey;
this.privateKey = privateKey;
fireIfPropertyChanged(PROPERTY_PRIVATE_KEY, oldPrivateKey, privateKey);