]> git.mxchange.org Git - jcoreee.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Fri, 27 Apr 2018 23:36:55 +0000 (01:36 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 27 Apr 2018 23:36:55 +0000 (01:36 +0200)
- 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 <roland@mxchange.org>
src/org/mxchange/jcoreee/bean/ejb/BaseEnterpriseBean.java
src/org/mxchange/jcoreee/bean/faces/BaseFacesBean.java
src/org/mxchange/jcoreee/events/helper/clear/HelperCleanupEvent.java
src/org/mxchange/jcoreee/events/helper/clear/ObservableHelperCleanupEvent.java
src/org/mxchange/jcoreee/events/locale/LocaleChangeEvent.java
src/org/mxchange/jcoreee/events/locale/ObservableLocaleChangeEvent.java

index a08610c116cc03b03350393133e5bdf8796583a6..ff87a0f3553a550aeb85bde143a0d8a8199d502b 100644 (file)
@@ -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();
        }
index 93d502c8ca0c34f2b38d613a45c394721414419f..ef7ed50f6f96da91c17203653cabce72579f4f3f 100644 (file)
@@ -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<BigDecimal>) value).compareTo(BigDecimal.valueOf(Double.valueOf(filterText))) > 0;
+               return ((Comparable<BigDecimal>) value).compareTo(BigDecimal.valueOf(Double.valueOf(filterText))) >= 0;
        }
 
        /**
index 39122537e0fa9c9ab99cf898714bf918c3bb0549..451f8db69bcef43a9673f5f4bc6bad909e7d40df 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017, 2018 Free Software Foundation<roland@mxchange.org>
+ * 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
index 3a7cb43e67be976f34da7acf9e748020562bc309..789e7e97a178a72d6a181da406cc39dc10f36331 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017, 2018 Free Software Foundation<roland@mxchange.org>
+ * 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
index 3851b903477d01dd5aeca1207a968b9e37660187..9c812dae4367f03b6e09a6671f4afd3e9a7b21c8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017, 2018 Free Software Foundation<roland@mxchange.org>
+ * 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
index abeb9982fef2031ede176c4b50f8f4a4cba20e13..97b79cdc255184ff2097961b077e944493d690a6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017, 2018 Free Software Foundation<roland@mxchange.org>
+ * 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