Skip to content

Commit

Permalink
Rename ConfigFactoryCommon to ConfigFactoryShared
Browse files Browse the repository at this point in the history
  • Loading branch information
ekrich committed Aug 5, 2024
1 parent f34daa4 commit 828337a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ package org.ekrich.config
/**
* [[ConfigFactory]] methods for Scala.js platform
*/
abstract class PlatformConfigFactory extends ConfigFactoryCommon {}
abstract class PlatformConfigFactory extends ConfigFactoryShared {}
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ package org.ekrich.config
/**
* [[ConfigFactory]] methods common to JVM and Native
*/
abstract class ConfigFactoryJvmNative extends ConfigFactoryCommon {}
abstract class ConfigFactoryJvmNative extends ConfigFactoryShared {}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import java.io.Reader

import org.ekrich.config.impl.Parseable

abstract class ConfigFactoryCommon {
/**
* [[ConfigFactory]] methods shared by all platforms
*/
abstract class ConfigFactoryShared {

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

0 comments on commit 828337a

Please sign in to comment.