Skip to content

Commit 9c1ef3f

Browse files
committed
fix: implement com.microsoft.bot.integration.Configuration#methods
1 parent 4e4bc00 commit 9c1ef3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

botbuilder-spring-boot-autoconfig/src/main/java/io/github/powerbotkit/autoconfigure/BotBuilderPropertiesConfiguration.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ public class BotBuilderPropertiesConfiguration implements Configuration {
1414

1515
@Override
1616
public String getProperty(String key) {
17-
return null;
17+
return this.properties.getProperty(key);
1818
}
1919

2020
@Override
2121
public Properties getProperties() {
22-
return null;
22+
return this.properties;
2323
}
2424

2525
@Override
2626
public String[] getProperties(String key) {
27-
return new String[0];
27+
return this.getProperties(key);
2828
}
2929

3030
public BotBuilderPropertiesConfiguration(BotBuilderProperties botBuilderProperties) {

0 commit comments

Comments
 (0)