Move rs-client related classes to own package

To properly differentiate between client loading logic, move these
classes to own package.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-06-07 10:36:28 +02:00
parent 7de8436bdb
commit dcbccbb01b
6 changed files with 32 additions and 29 deletions

View File

@@ -23,21 +23,22 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package net.runelite.client;
package net.runelite.client.rs;
import java.io.IOException;
import net.runelite.client.rs.ClientConfigLoader;
import org.junit.Test;
/**
*
* @author Adam
*/
public class ConfigLoaderTest
public class ClientConfigLoaderTest
{
@Test
public void test() throws IOException
{
ConfigLoader loader = new ConfigLoader();
ClientConfigLoader loader = new ClientConfigLoader();
loader.fetch();
for (String key : loader.getProperties().keySet())