Skip to content

Commit

Permalink
Granted NGProperties it's own package (preparing move to core module)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugithordarson committed Sep 22, 2024
1 parent 27ea00b commit ad6298b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions ng-appserver/src/main/java/ng/appserver/NGApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import ng.appserver.NGProperties.PropertiesSourceArguments;
import ng.appserver.NGProperties.PropertiesSourceResource;
import ng.appserver.directactions.NGDirectActionRequestHandler;
import ng.appserver.properties.NGProperties;
import ng.appserver.properties.NGProperties.PropertiesSourceArguments;
import ng.appserver.properties.NGProperties.PropertiesSourceResource;
import ng.appserver.resources.NGResource;
import ng.appserver.resources.NGResourceLoader;
import ng.appserver.resources.NGResourceLoader.JavaClasspathResourceSource;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ng.appserver;
package ng.appserver.properties;

import java.io.IOException;
import java.io.InputStream;
Expand All @@ -17,6 +17,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import ng.appserver.NGApplication;
import ng.appserver.resources.NGResource;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.net.UnknownHostException;
import java.util.concurrent.TimeUnit;

import ng.appserver.NGProperties;
import ng.appserver.properties.NGProperties;

/**
* Created as a temporary holder class for the LifeBeatThread, just to get it out of NGApplication // Hugi 2022-04-18
Expand Down
2 changes: 1 addition & 1 deletion ng-control/src/main/java/ng/control/NGOverview.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import ng.appserver.NGActionResults;
import ng.appserver.NGComponent;
import ng.appserver.NGContext;
import ng.appserver.NGProperties.PropertiesSource;
import ng.appserver.NGSession;
import ng.appserver.properties.NGProperties.PropertiesSource;

public class NGOverview extends NGComponent {

Expand Down

0 comments on commit ad6298b

Please sign in to comment.