From: Roland Haeder Date: Mon, 7 Sep 2015 18:47:32 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=10f12bc2043226fb0b03cbbbb8caab4fa3e06ae2;p=jcore-utils.git Continued: - updated jcore.jar - got rid of some things that don't work in EJB container ... :-( Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index 636db5c..1e4a78b 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/src/org/mxchange/jcoreee/BaseServletSystem.java b/src/org/mxchange/jcoreee/BaseServletSystem.java deleted file mode 100644 index 10ce7b6..0000000 --- a/src/org/mxchange/jcoreee/BaseServletSystem.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (C) 2015 Roland Haeder - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package org.mxchange.jcoreee; - -import org.mxchange.jcore.BaseFrameworkSystem; - -/** - * A general shop class - * @author Roland Haeder - */ -public class BaseServletSystem extends BaseFrameworkSystem { -} diff --git a/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java b/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java index 031a8e0..9d70e50 100644 --- a/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java +++ b/src/org/mxchange/jcoreee/beans/BaseFrameworkBean.java @@ -29,7 +29,7 @@ public abstract class BaseFrameworkBean implements Serializable { /** * Serial number */ - private static final long serialVersionUID = 83258139481372814L; + private static final long serialVersionUID = 83_258_139_481_372_814L; /** * Protected constructor, please don't add init() call here. diff --git a/src/org/mxchange/jcoreee/filter/servlet/BaseServletFilter.java b/src/org/mxchange/jcoreee/filter/servlet/BaseServletFilter.java index aaf7b69..f0f33ef 100644 --- a/src/org/mxchange/jcoreee/filter/servlet/BaseServletFilter.java +++ b/src/org/mxchange/jcoreee/filter/servlet/BaseServletFilter.java @@ -66,7 +66,7 @@ public abstract class BaseServletFilter extends BaseFrameworkSystem implements F * Configuration instance * @return the config */ - protected final FilterConfig getConfig () { + protected FilterConfig getConfig () { return this.config; }