From: Roland Häder Date: Fri, 27 Apr 2018 23:36:55 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7a50450e9a64fd0199b102409a727d1bbb340a13;p=jcoreee.git Continued: - ops, no email address in copyright notice needed - also allow equal values pass (sorting method) - no need to invoke java.lang.Object's constructor, will be done automatically Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/jcoreee/bean/ejb/BaseEnterpriseBean.java b/src/org/mxchange/jcoreee/bean/ejb/BaseEnterpriseBean.java index a08610c..ff87a0f 100644 --- a/src/org/mxchange/jcoreee/bean/ejb/BaseEnterpriseBean.java +++ b/src/org/mxchange/jcoreee/bean/ejb/BaseEnterpriseBean.java @@ -84,9 +84,6 @@ public abstract class BaseEnterpriseBean implements Serializable { * need to send emails. */ protected BaseEnterpriseBean () { - // Call super constructor - super(); - // Init logger instance this.initLoggerInstance(); } diff --git a/src/org/mxchange/jcoreee/bean/faces/BaseFacesBean.java b/src/org/mxchange/jcoreee/bean/faces/BaseFacesBean.java index 93d502c..ef7ed50 100644 --- a/src/org/mxchange/jcoreee/bean/faces/BaseFacesBean.java +++ b/src/org/mxchange/jcoreee/bean/faces/BaseFacesBean.java @@ -77,8 +77,6 @@ public abstract class BaseFacesBean implements Serializable { * Protected constructor */ protected BaseFacesBean () { - // Call super constructor - super(); } /** @@ -113,7 +111,7 @@ public abstract class BaseFacesBean implements Serializable { } // Do the cast and compare - return ((Comparable) value).compareTo(BigDecimal.valueOf(Double.valueOf(filterText))) > 0; + return ((Comparable) value).compareTo(BigDecimal.valueOf(Double.valueOf(filterText))) >= 0; } /** diff --git a/src/org/mxchange/jcoreee/events/helper/clear/HelperCleanupEvent.java b/src/org/mxchange/jcoreee/events/helper/clear/HelperCleanupEvent.java index 3912253..451f8db 100644 --- a/src/org/mxchange/jcoreee/events/helper/clear/HelperCleanupEvent.java +++ b/src/org/mxchange/jcoreee/events/helper/clear/HelperCleanupEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017, 2018 Free Software Foundation + * Copyright (C) 2017, 2018 Free Software Foundation * * 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 diff --git a/src/org/mxchange/jcoreee/events/helper/clear/ObservableHelperCleanupEvent.java b/src/org/mxchange/jcoreee/events/helper/clear/ObservableHelperCleanupEvent.java index 3a7cb43..789e7e9 100644 --- a/src/org/mxchange/jcoreee/events/helper/clear/ObservableHelperCleanupEvent.java +++ b/src/org/mxchange/jcoreee/events/helper/clear/ObservableHelperCleanupEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017, 2018 Free Software Foundation + * Copyright (C) 2017, 2018 Free Software Foundation * * 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 diff --git a/src/org/mxchange/jcoreee/events/locale/LocaleChangeEvent.java b/src/org/mxchange/jcoreee/events/locale/LocaleChangeEvent.java index 3851b90..9c812da 100644 --- a/src/org/mxchange/jcoreee/events/locale/LocaleChangeEvent.java +++ b/src/org/mxchange/jcoreee/events/locale/LocaleChangeEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017, 2018 Free Software Foundation + * Copyright (C) 2017, 2018 Free Software Foundation * * 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 diff --git a/src/org/mxchange/jcoreee/events/locale/ObservableLocaleChangeEvent.java b/src/org/mxchange/jcoreee/events/locale/ObservableLocaleChangeEvent.java index abeb998..97b79cd 100644 --- a/src/org/mxchange/jcoreee/events/locale/ObservableLocaleChangeEvent.java +++ b/src/org/mxchange/jcoreee/events/locale/ObservableLocaleChangeEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017, 2018 Free Software Foundation + * Copyright (C) 2017, 2018 Free Software Foundation * * 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