]> git.mxchange.org Git - jcore-logger-ejb.git/commitdiff
fixed warning about invalid injection point, variable must be named "injectionPoint...
authorRoland Haeder <roland@mxchange.org>
Mon, 7 Mar 2016 20:49:38 +0000 (21:49 +0100)
committerRoland Haeder <roland@mxchange.org>
Mon, 7 Mar 2016 20:49:38 +0000 (21:49 +0100)
nbproject/genfiles.properties
src/java/org/mxchange/jcoreeelogger/beans/local/logger/LoggerFactory.java

index f4dc5456ea4ac7b672f4e70fc0768c2ad0ba5e56..c1aaa259356db16fc9cb83fb745287722765464e 100644 (file)
@@ -5,4 +5,4 @@ build.xml.stylesheet.CRC32=5910fda3@1.51.1
 # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
 nbproject/build-impl.xml.data.CRC32=22b87e48
 nbproject/build-impl.xml.script.CRC32=3a74a7eb
-nbproject/build-impl.xml.stylesheet.CRC32=6096d939@1.51.1
+nbproject/build-impl.xml.stylesheet.CRC32=6096d939@1.55.1
index 3c51037d3da665d7e95c047d3da841e7fc7f9ee2..85693ca29cbab81d8b9712c97d990329eab07d2a 100644 (file)
@@ -44,14 +44,14 @@ public class LoggerFactory {
        /**
         * Produces a logger instance
         * <p>
-        * @param caller Injection point
+        * @param injectionPoint Injection point
         * <p>
         * @return Logger
         */
        @Produces
        @Log
-       public Logger getLogger (final InjectionPoint caller) {
-               this.logger.trace(MessageFormat.format("caller={0} - CALLED!", caller));
-               return LogManager.getLogger(caller.getMember().getDeclaringClass().getName());
+       public Logger getLogger (final InjectionPoint injectionPoint) {
+               this.logger.trace(MessageFormat.format("injectionPoint={0} - CALLED!", injectionPoint));
+               return LogManager.getLogger(injectionPoint.getMember().getDeclaringClass().getName());
        }
 }