Author: ggregory
Date: Sat Jul 8 02:42:02 2017
New Revision: 1801259
URL: http://svn.apache.org/viewvc?rev=1801259&view=rev
Log:
Remove anoying @version in comments.
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/Daemon.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonContext.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonController.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonInitException.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonListener.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonPermission.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonUserSignal.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonWrapper.java
commons/proper/daemon/trunk/src/native/unix/Makedefs.in
commons/proper/daemon/trunk/src/native/unix/Makefile.in
commons/proper/daemon/trunk/src/native/unix/native/Makefile.in
commons/proper/daemon/trunk/src/native/unix/native/arguments.c
commons/proper/daemon/trunk/src/native/unix/native/arguments.h
commons/proper/daemon/trunk/src/native/unix/native/debug.c
commons/proper/daemon/trunk/src/native/unix/native/debug.h
commons/proper/daemon/trunk/src/native/unix/native/dso-dlfcn.c
commons/proper/daemon/trunk/src/native/unix/native/dso-dyld.c
commons/proper/daemon/trunk/src/native/unix/native/dso.h
commons/proper/daemon/trunk/src/native/unix/native/help.c
commons/proper/daemon/trunk/src/native/unix/native/help.h
commons/proper/daemon/trunk/src/native/unix/native/home.c
commons/proper/daemon/trunk/src/native/unix/native/home.h
commons/proper/daemon/trunk/src/native/unix/native/java.c
commons/proper/daemon/trunk/src/native/unix/native/java.h
commons/proper/daemon/trunk/src/native/unix/native/jsvc-unix.c
commons/proper/daemon/trunk/src/native/unix/native/jsvc.h
commons/proper/daemon/trunk/src/native/unix/native/location.c
commons/proper/daemon/trunk/src/native/unix/native/location.h
commons/proper/daemon/trunk/src/native/unix/native/locks.c
commons/proper/daemon/trunk/src/native/unix/native/locks.h
commons/proper/daemon/trunk/src/native/unix/native/replace.c
commons/proper/daemon/trunk/src/native/unix/native/replace.h
commons/proper/daemon/trunk/src/native/unix/native/signals.c
commons/proper/daemon/trunk/src/native/unix/native/signals.h
commons/proper/daemon/trunk/src/native/unix/support/buildconf.sh
commons/proper/daemon/trunk/src/samples/AloneService.java
commons/proper/daemon/trunk/src/samples/ServiceDaemon.java
commons/proper/daemon/trunk/src/samples/ServiceDaemonReadThread.java
commons/proper/daemon/trunk/src/samples/SimpleApplication.java
commons/proper/daemon/trunk/src/samples/SimpleDaemon.java
commons/proper/daemon/trunk/src/test/java/org/apache/commons/daemon/SimpleDaemon.java
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/Daemon.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/Daemon.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/Daemon.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/Daemon.java
Sat Jul 8 02:42:02 2017
@@ -29,7 +29,6 @@ package org.apache.commons.daemon;
* fashion.
* </p>
* @author Pier Fumagalli
- * @version $Id$
*/
public interface Daemon
{
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonContext.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonContext.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonContext.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonContext.java
Sat Jul 8 02:42:02 2017
@@ -23,7 +23,6 @@ package org.apache.commons.daemon;
* communicate with the Daemon container.
*
* @author Pier Fumagalli
- * @version $Id$
*/
public interface DaemonContext
{
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonController.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonController.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonController.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonController.java
Sat Jul 8 02:42:02 2017
@@ -22,7 +22,6 @@ package org.apache.commons.daemon;
* Defines methods needed by the DaemonLoader.
*
* @author Pier Fumagalli
- * @version $Id$
*/
public interface DaemonController
{
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonInitException.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonInitException.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonInitException.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonInitException.java
Sat Jul 8 02:42:02 2017
@@ -22,7 +22,6 @@ package org.apache.commons.daemon;
* on stdout, rather than a dirty great stacktrace.
*
* @author Nick Griffiths ([email protected])
- * @version $Id$
*/
public class DaemonInitException extends Exception {
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonListener.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonListener.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonListener.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonListener.java
Sat Jul 8 02:42:02 2017
@@ -21,7 +21,6 @@ import java.util.EventListener;
/**
* EvenListener type wrapper.
- * @version $Id$
*/
public interface DaemonListener extends EventListener
{
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonPermission.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonPermission.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonPermission.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonPermission.java
Sat Jul 8 02:42:02 2017
@@ -83,7 +83,6 @@ import java.util.StringTokenizer;
* </p>
*
* @author Pier Fumagalli
- * @version $Id$
*/
public final class DaemonPermission extends Permission
{
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonUserSignal.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonUserSignal.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonUserSignal.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/DaemonUserSignal.java
Sat Jul 8 02:42:02 2017
@@ -27,7 +27,6 @@ package org.apache.commons.daemon;
* </p>
* @author Nick Griffiths <[email protected]>
* @author Mladen Turk <[email protected]>
- * @version $Id$
*/
public interface DaemonUserSignal
{
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java
Sat Jul 8 02:42:02 2017
@@ -45,7 +45,6 @@ import java.text.ParseException;
* value will be <code>${foo}</code>.
* </p>
*
- * @version $Id$
* @author Mladen Turk
*/
public final class DaemonConfiguration
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java
Sat Jul 8 02:42:02 2017
@@ -26,8 +26,6 @@ import java.lang.reflect.Method;
/**
* Used by jsvc for Daemon management.
- *
- * @version $Id$
*/
public final class DaemonLoader
{
Modified:
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonWrapper.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonWrapper.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonWrapper.java
(original)
+++
commons/proper/daemon/trunk/src/main/java/org/apache/commons/daemon/support/DaemonWrapper.java
Sat Jul 8 02:42:02 2017
@@ -15,8 +15,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
-
package org.apache.commons.daemon.support;
import java.lang.reflect.Method;
@@ -32,7 +30,6 @@ import org.apache.commons.daemon.DaemonC
* The applications must have the mechanism to manage
* the application lifecycle.
*
- * @version $Id$
* @author Mladen Turk
*/
public class DaemonWrapper implements Daemon
Modified: commons/proper/daemon/trunk/src/native/unix/Makedefs.in
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/Makedefs.in?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/Makedefs.in (original)
+++ commons/proper/daemon/trunk/src/native/unix/Makedefs.in Sat Jul 8 02:42:02
2017
@@ -16,7 +16,6 @@
#
# @author Pier Fumagalli <mailto:[email protected]>
-# @version $Id$
CC = @CC@
CFLAGS = @CFLAGS@
Modified: commons/proper/daemon/trunk/src/native/unix/Makefile.in
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/Makefile.in?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/Makefile.in (original)
+++ commons/proper/daemon/trunk/src/native/unix/Makefile.in Sat Jul 8 02:42:02
2017
@@ -16,7 +16,6 @@
#
# @author Pier Fumagalli <mailto:[email protected]>
-# @version $Id$
SUBDIRS = native
Modified: commons/proper/daemon/trunk/src/native/unix/native/Makefile.in
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/Makefile.in?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/Makefile.in (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/Makefile.in Sat Jul 8
02:42:02 2017
@@ -15,7 +15,6 @@
# limitations under the License.
#
# @author Pier Fumagalli <mailto:[email protected]>
-# @version $Id$
include ../Makedefs
Modified: commons/proper/daemon/trunk/src/native/unix/native/arguments.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/arguments.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/arguments.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/arguments.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
#include <limits.h>
#include <glob.h>
Modified: commons/proper/daemon/trunk/src/native/unix/native/arguments.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/arguments.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/arguments.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/arguments.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_ARGUMENTS_H__
#define __JSVC_ARGUMENTS_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/debug.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/debug.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/debug.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/debug.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
#include <sys/types.h>
#include <unistd.h>
Modified: commons/proper/daemon/trunk/src/native/unix/native/debug.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/debug.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/debug.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/debug.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_DEBUG_H__
#define __JSVC_DEBUG_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/dso-dlfcn.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/dso-dlfcn.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/dso-dlfcn.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/dso-dlfcn.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
#ifdef DSO_DLFCN
Modified: commons/proper/daemon/trunk/src/native/unix/native/dso-dyld.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/dso-dyld.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/dso-dyld.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/dso-dyld.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
#ifdef DSO_DYLD
Modified: commons/proper/daemon/trunk/src/native/unix/native/dso.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/dso.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/dso.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/dso.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_DSO_H__
#define __JSVC_DSO_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/help.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/help.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/help.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/help.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
void help(home_data *data)
Modified: commons/proper/daemon/trunk/src/native/unix/native/help.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/help.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/help.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/help.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_HELP_H__
#define __JSVC_HELP_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/home.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/home.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/home.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/home.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
/* Check if a path is a directory */
Modified: commons/proper/daemon/trunk/src/native/unix/native/home.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/home.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/home.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/home.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_HOME_H__
#define __JSVC_HOME_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/java.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/java.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/java.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/java.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
#ifdef OS_CYGWIN
Modified: commons/proper/daemon/trunk/src/native/unix/native/java.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/java.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/java.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/java.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_JAVA_H__
#define __JSVC_JAVA_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/jsvc-unix.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/jsvc-unix.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/jsvc-unix.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/jsvc-unix.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
#include <signal.h>
Modified: commons/proper/daemon/trunk/src/native/unix/native/jsvc.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/jsvc.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/jsvc.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/jsvc.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_H__
#define __JSVC_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/location.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/location.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/location.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/location.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
/* Locations of various JVM files. We have to deal with all this madness since
Modified: commons/proper/daemon/trunk/src/native/unix/native/location.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/location.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/location.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/location.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_LOCATION_H__
#define __JSVC_LOCATION_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/locks.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/locks.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/locks.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/locks.c Sat Jul 8
02:42:02 2017
@@ -14,8 +14,6 @@
* limitations under the License.
*/
-/* @version $Id: java.c 909069 2010-02-11 16:43:36Z mturk $ */
-
/*
* as Cygwin does not support lockf, jsvc uses fcntl to emulate it.
*/
Modified: commons/proper/daemon/trunk/src/native/unix/native/locks.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/locks.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/locks.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/locks.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_LOCKS_H__
#define __JSVC_LOCKS_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/replace.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/replace.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/replace.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/replace.c Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#include "jsvc.h"
/* Replace all occurrences of a string in another */
Modified: commons/proper/daemon/trunk/src/native/unix/native/replace.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/replace.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/replace.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/replace.h Sat Jul 8
02:42:02 2017
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_REPLACE_H__
#define __JSVC_REPLACE_H__
Modified: commons/proper/daemon/trunk/src/native/unix/native/signals.c
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/signals.c?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/signals.c (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/signals.c Sat Jul 8
02:42:02 2017
@@ -14,8 +14,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
-
/*
* as Windows does not support signal, jsvc uses events to emulate them.
* The supported signal is SIGTERM.
Modified: commons/proper/daemon/trunk/src/native/unix/native/signals.h
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/signals.h?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/native/signals.h (original)
+++ commons/proper/daemon/trunk/src/native/unix/native/signals.h Sat Jul 8
02:42:02 2017
@@ -13,7 +13,6 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
-/* @version $Id$ */
#ifndef __JSVC_SIGNALS_H__
#define __JSVC_SIGNALS_H__
Modified: commons/proper/daemon/trunk/src/native/unix/support/buildconf.sh
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/support/buildconf.sh?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/unix/support/buildconf.sh (original)
+++ commons/proper/daemon/trunk/src/native/unix/support/buildconf.sh Sat Jul 8
02:42:02 2017
@@ -16,7 +16,6 @@
# limitations under the License.
# @author Pier Fumagalli <mailto:[email protected]>
-# @version $Id$
# The cache of automake always brings problems when changing *.m4 files.
rm -rf autom4te.cache
Modified: commons/proper/daemon/trunk/src/samples/AloneService.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/samples/AloneService.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/samples/AloneService.java (original)
+++ commons/proper/daemon/trunk/src/samples/AloneService.java Sat Jul 8
02:42:02 2017
@@ -15,7 +15,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
import java.io.FileInputStream;
import java.io.FileOutputStream;
Modified: commons/proper/daemon/trunk/src/samples/ServiceDaemon.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/samples/ServiceDaemon.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/samples/ServiceDaemon.java (original)
+++ commons/proper/daemon/trunk/src/samples/ServiceDaemon.java Sat Jul 8
02:42:02 2017
@@ -15,8 +15,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
-
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
Modified: commons/proper/daemon/trunk/src/samples/ServiceDaemonReadThread.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/samples/ServiceDaemonReadThread.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/samples/ServiceDaemonReadThread.java
(original)
+++ commons/proper/daemon/trunk/src/samples/ServiceDaemonReadThread.java Sat
Jul 8 02:42:02 2017
@@ -15,7 +15,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
import java.io.InputStream;
import java.io.IOException;
import java.lang.Thread;
Modified: commons/proper/daemon/trunk/src/samples/SimpleApplication.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/samples/SimpleApplication.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/samples/SimpleApplication.java (original)
+++ commons/proper/daemon/trunk/src/samples/SimpleApplication.java Sat Jul 8
02:42:02 2017
@@ -15,8 +15,6 @@
* limitations under the License.
*/
-/* @version $Id: SimpleApplication.java 937350 2010-04-23 16:03:39Z sebb $ */
-
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
Modified: commons/proper/daemon/trunk/src/samples/SimpleDaemon.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/samples/SimpleDaemon.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/samples/SimpleDaemon.java (original)
+++ commons/proper/daemon/trunk/src/samples/SimpleDaemon.java Sat Jul 8
02:42:02 2017
@@ -15,8 +15,6 @@
* limitations under the License.
*/
-/* @version $Id$ */
-
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
Modified:
commons/proper/daemon/trunk/src/test/java/org/apache/commons/daemon/SimpleDaemon.java
URL:
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/test/java/org/apache/commons/daemon/SimpleDaemon.java?rev=1801259&r1=1801258&r2=1801259&view=diff
==============================================================================
---
commons/proper/daemon/trunk/src/test/java/org/apache/commons/daemon/SimpleDaemon.java
(original)
+++
commons/proper/daemon/trunk/src/test/java/org/apache/commons/daemon/SimpleDaemon.java
Sat Jul 8 02:42:02 2017
@@ -28,7 +28,6 @@ import org.apache.commons.daemon.DaemonC
import org.apache.commons.daemon.DaemonContext;
/**
- * @version $Id$
*/
public class SimpleDaemon implements Daemon, Runnable, DaemonUserSignal {