Skip to content

Commit 3207256

Browse files
committed
Added a method to access all properties in GalenConfig
1 parent 5f8e888 commit 3207256

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

galen-core/src/main/java/com/galenframework/config/GalenConfig.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
******************************************************************************/
1616
package com.galenframework.config;
1717

18-
import java.io.File;
19-
import java.io.FileInputStream;
2018
import java.io.IOException;
2119
import java.io.InputStream;
2220
import java.util.LinkedList;
@@ -25,9 +23,7 @@
2523

2624
import com.galenframework.specs.SpecImage;
2725
import com.galenframework.utils.GalenUtils;
28-
import com.galenframework.specs.SpecImage;
2926

30-
import com.galenframework.utils.GalenUtils;
3127
import org.apache.commons.lang3.StringUtils;
3228
import org.slf4j.Logger;
3329
import org.slf4j.LoggerFactory;
@@ -48,6 +44,11 @@ private GalenConfig() {
4844
LOG.trace("Cannot load galen config", e);
4945
}
5046
}
47+
48+
49+
public Properties getProperties() {
50+
return properties;
51+
}
5152

5253
private void loadConfig() throws IOException {
5354
this.properties = new Properties();

0 commit comments

Comments
 (0)