Skip to content

Commit

Permalink
add missed PropertiesExtender class file
Browse files Browse the repository at this point in the history
  • Loading branch information
arsenalzp committed Apr 23, 2024
1 parent 6a84eeb commit 2bd807b
Showing 1 changed file with 16 additions and 0 deletions.
@@ -0,0 +1,16 @@
package org.eclipse.jkube.kit.common;

import java.net.URL;
import java.util.Properties;

public class PropertiesExtender extends Properties {
private URL propertiesFile;

public void setPropertiesFile(URL file) {
this.propertiesFile = file;
}

public URL getPropertiesFile() {
return this.propertiesFile;
}
}

0 comments on commit 2bd807b

Please sign in to comment.