Skip to content

Commit

Permalink
Renamed "x.junk" package to a little more respectable "ng.xperimental"
Browse files Browse the repository at this point in the history
  • Loading branch information
hugithordarson committed Nov 21, 2024
1 parent 93a62e0 commit 9591dc6
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions ng-appserver/src/main/java/ng/appserver/NGApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
import ng.appserver.wointegration.WOMPRequestHandler;
import ng.classes.NGClassManager;
import ng.plugins.NGPlugin;
import x.junk.NGExceptionPage;
import x.junk.NGExceptionPageDevelopment;
import x.junk.NGSessionTimeoutPage;
import x.junk.NGWelcomePage;
import ng.xperimental.NGExceptionPage;
import ng.xperimental.NGExceptionPageDevelopment;
import ng.xperimental.NGSessionTimeoutPage;
import ng.xperimental.NGWelcomePage;

/**
* FIXME: Initialization still feels a little weird, while we're moving away from the way it's handled in WOApplication. Look a little more into the flow of application initialization // Hugi 2021-12-29
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import ng.appserver.NGRequest;
import ng.appserver.NGResponse;
import ng.kvc.NGKeyValueCoding.UnknownKeyException;
import x.junk.NGErrorMessageElement;
import ng.xperimental.NGErrorMessageElement;

/**
* A common superclass for dynamic elements that have multiple children in our template element tree
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
import ng.appserver.templating.parser.PHTMLNode;
import ng.appserver.templating.parser.PNode;
import ng.appserver.templating.parser.NGDeclaration.NGBindingValue;
import x.junk.NGElementNotFoundElement;
import x.junk.NGErrorMessageElement;
import ng.xperimental.NGElementNotFoundElement;
import ng.xperimental.NGErrorMessageElement;

/**
* Bridges the "new and old world" for template parsing
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package x.junk;
package ng.xperimental;

import java.io.IOException;
import java.io.UncheckedIOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package x.junk;
package ng.xperimental;

import ng.appserver.NGContext;
import ng.appserver.NGElement;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package x.junk;
package ng.xperimental;

import ng.appserver.NGContext;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package x.junk;
package ng.xperimental;

import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package x.junk;
package ng.xperimental;

import ng.appserver.NGComponent;
import ng.appserver.NGContext;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package x.junk;
package ng.xperimental;

import ng.appserver.NGComponent;
import ng.appserver.NGContext;
Expand Down

0 comments on commit 9591dc6

Please sign in to comment.