diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/juick/PushComponent.java (renamed from src/main/java/com/juick/push/PushComponent.java) | 2 | ||||
-rw-r--r-- | src/main/webapp/WEB-INF/web.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/juick/push/PushComponent.java b/src/main/java/com/juick/PushComponent.java index a32e887c..9de598f3 100644 --- a/src/main/java/com/juick/push/PushComponent.java +++ b/src/main/java/com/juick/PushComponent.java @@ -15,7 +15,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -package com.juick.push; +package com.juick; import com.google.android.gcm.server.Message; import com.google.android.gcm.server.MulticastResult; diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index a71f3918..d32932b4 100644 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -24,6 +24,6 @@ <listener> <description>APNS/GCM/MPNS module</description> <display-name>PushComponent</display-name> - <listener-class>com.juick.push.PushComponent</listener-class> + <listener-class>com.juick.PushComponent</listener-class> </listener> </web-app> |