Changeset 31229 in osm for applications/editors/josm
- Timestamp:
- 2015-06-07T16:54:32+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/log4j
- Files:
-
- 5 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/log4j/.classpath
r30416 r31229 4 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> 5 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.17.jar"/> 6 <classpathentry exported="true" kind="lib" path="lib/log4j-1.2-api-2.3.jar"/> 7 <classpathentry exported="true" kind="lib" path="lib/log4j-api-2.3.jar"/> 8 <classpathentry kind="lib" path="lib/log4j-core-2.3.jar"/> 7 9 <classpathentry kind="output" path="bin"/> 8 10 </classpath> -
applications/editors/josm/plugins/log4j/.project
r28963 r31229 13 13 </buildSpec> 14 14 <natures> 15 <nature>org.sonar.ide.eclipse.core.sonarNature</nature> 15 16 <nature>org.eclipse.jdt.core.javanature</nature> 16 17 </natures> -
applications/editors/josm/plugins/log4j/src/org/openstreetmap/josm/plugins/log4j/Log4jPlugin.java
r28963 r31229 1 // License: GPL. Copyright 2012 Don-vip1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.plugins.log4j; 3 3 … … 5 5 import org.openstreetmap.josm.plugins.PluginInformation; 6 6 7 /** 8 * Log4j plugin brings the Log4j API to other plugins. 9 * @version 2.3 10 */ 7 11 public class Log4jPlugin extends Plugin { 12 13 /** 14 * Constructs a new {@code Log4jPlugin}. 15 * @param info plugin info 16 */ 8 17 public Log4jPlugin(PluginInformation info) { 9 18 super(info);
Note:
See TracChangeset
for help on using the changeset viewer.