Skip to content

Commit 27ee375

Browse files
committed
Rename ConfigFactoryCommon to ConfigFactoryShared
1 parent f56d425 commit 27ee375

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

sconfig/js/src/main/scala/org/ekrich/config/PlatformConfigFactory.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ package org.ekrich.config
33
/**
44
* [[ConfigFactory]] methods for Scala.js platform
55
*/
6-
abstract class PlatformConfigFactory extends ConfigFactoryCommon {}
6+
abstract class PlatformConfigFactory extends ConfigFactoryShared {}

sconfig/jvm-native/src/main/scala/org/ekrich/config/ConfigFactoryJvmNative.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ package org.ekrich.config
33
/**
44
* [[ConfigFactory]] methods common to JVM and Native
55
*/
6-
abstract class ConfigFactoryJvmNative extends ConfigFactoryCommon {}
6+
abstract class ConfigFactoryJvmNative extends ConfigFactoryShared {}

sconfig/shared/src/main/scala/org/ekrich/config/ConfigFactoryCommon.scala sconfig/shared/src/main/scala/org/ekrich/config/ConfigFactoryShared.scala

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import java.io.Reader
44

55
import org.ekrich.config.impl.Parseable
66

7-
abstract class ConfigFactoryCommon {
7+
/**
8+
* [[ConfigFactory]] methods shared by all platforms
9+
*/
10+
abstract class ConfigFactoryShared {
811

912
/**
1013
* Parses a string (which should be valid HOCON or JSON by default, or the

0 commit comments

Comments
 (0)