You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by sk...@apache.org on 2022/12/08 13:14:33 UTC

[netbeans-native-installers] 03/19: [NETBEANS-161] Changed license header introducer to simple slash-star

This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-native-installers.git

commit 2238d77bdfa3acf721851767676dd0bf07c46d87
Author: Lars Bruun-Hansen <lb...@gmail.com>
AuthorDate: Sun Nov 19 21:41:10 2017 +0100

    [NETBEANS-161] Changed license header introducer to simple slash-star
    
    The new Apache license header on all .java, .cpp, .c files (etc)
    started with slash-star-star (the Javadoc introducer). While strictly
    speaking this is acceptable, the header is not a Javadoc comment,
    and no present or future Javadoc parser should attempt to regard it
    as Javadoc comment. Therefore all such occurrences are changed to
    simple slash-star introducer.
---
 cleaner/windows/src/main.c                  | 2 +-
 jnilib/.common/src/CommonUtils.c            | 2 +-
 jnilib/.common/src/CommonUtils.h            | 2 +-
 jnilib/.unix/src/jni_UnixNativeUtils.c      | 2 +-
 jnilib/.unix/src/jni_UnixNativeUtils.h      | 2 +-
 jnilib/windows/src/WindowsUtils.c           | 2 +-
 jnilib/windows/src/WindowsUtils.h           | 2 +-
 jnilib/windows/src/jni_WindowsNativeUtils.c | 2 +-
 jnilib/windows/src/jni_WindowsNativeUtils.h | 2 +-
 jnilib/windows/src/jni_WindowsRegistry.c    | 2 +-
 jnilib/windows/src/jni_WindowsRegistry.h    | 2 +-
 launcher/windows/resources/res.rc           | 2 +-
 launcher/windows/src/Errors.h               | 2 +-
 launcher/windows/src/ExtractUtils.c         | 2 +-
 launcher/windows/src/ExtractUtils.h         | 2 +-
 launcher/windows/src/FileUtils.c            | 2 +-
 launcher/windows/src/FileUtils.h            | 2 +-
 launcher/windows/src/JavaUtils.c            | 2 +-
 launcher/windows/src/JavaUtils.h            | 2 +-
 launcher/windows/src/Launcher.c             | 2 +-
 launcher/windows/src/Launcher.h             | 2 +-
 launcher/windows/src/Main.c                 | 2 +-
 launcher/windows/src/Main.h                 | 2 +-
 launcher/windows/src/ProcessUtils.c         | 2 +-
 launcher/windows/src/ProcessUtils.h         | 2 +-
 launcher/windows/src/RegistryUtils.c        | 2 +-
 launcher/windows/src/RegistryUtils.h        | 2 +-
 launcher/windows/src/StringUtils.c          | 2 +-
 launcher/windows/src/StringUtils.h          | 2 +-
 launcher/windows/src/SystemUtils.c          | 2 +-
 launcher/windows/src/SystemUtils.h          | 2 +-
 launcher/windows/src/Types.h                | 2 +-
 32 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/cleaner/windows/src/main.c b/cleaner/windows/src/main.c
index 2743377..a94a094 100644
--- a/cleaner/windows/src/main.c
+++ b/cleaner/windows/src/main.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/.common/src/CommonUtils.c b/jnilib/.common/src/CommonUtils.c
index 3984628..b66eccd 100644
--- a/jnilib/.common/src/CommonUtils.c
+++ b/jnilib/.common/src/CommonUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/.common/src/CommonUtils.h b/jnilib/.common/src/CommonUtils.h
index b11aacd..8824351 100644
--- a/jnilib/.common/src/CommonUtils.h
+++ b/jnilib/.common/src/CommonUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/.unix/src/jni_UnixNativeUtils.c b/jnilib/.unix/src/jni_UnixNativeUtils.c
index 24da65d..437e270 100644
--- a/jnilib/.unix/src/jni_UnixNativeUtils.c
+++ b/jnilib/.unix/src/jni_UnixNativeUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/.unix/src/jni_UnixNativeUtils.h b/jnilib/.unix/src/jni_UnixNativeUtils.h
index 654e750..989e05d 100644
--- a/jnilib/.unix/src/jni_UnixNativeUtils.h
+++ b/jnilib/.unix/src/jni_UnixNativeUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/windows/src/WindowsUtils.c b/jnilib/windows/src/WindowsUtils.c
index ed5d835..fe4972d 100644
--- a/jnilib/windows/src/WindowsUtils.c
+++ b/jnilib/windows/src/WindowsUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/windows/src/WindowsUtils.h b/jnilib/windows/src/WindowsUtils.h
index eaa2aeb..947c63e 100644
--- a/jnilib/windows/src/WindowsUtils.h
+++ b/jnilib/windows/src/WindowsUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/windows/src/jni_WindowsNativeUtils.c b/jnilib/windows/src/jni_WindowsNativeUtils.c
index b21da67..6d7c60b 100644
--- a/jnilib/windows/src/jni_WindowsNativeUtils.c
+++ b/jnilib/windows/src/jni_WindowsNativeUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/windows/src/jni_WindowsNativeUtils.h b/jnilib/windows/src/jni_WindowsNativeUtils.h
index d673d94..9ea87e7 100644
--- a/jnilib/windows/src/jni_WindowsNativeUtils.h
+++ b/jnilib/windows/src/jni_WindowsNativeUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/windows/src/jni_WindowsRegistry.c b/jnilib/windows/src/jni_WindowsRegistry.c
index a157477..524a166 100644
--- a/jnilib/windows/src/jni_WindowsRegistry.c
+++ b/jnilib/windows/src/jni_WindowsRegistry.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/jnilib/windows/src/jni_WindowsRegistry.h b/jnilib/windows/src/jni_WindowsRegistry.h
index 05a144a..1bf9add 100644
--- a/jnilib/windows/src/jni_WindowsRegistry.h
+++ b/jnilib/windows/src/jni_WindowsRegistry.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/resources/res.rc b/launcher/windows/resources/res.rc
index b501640..012c85e 100644
--- a/launcher/windows/resources/res.rc
+++ b/launcher/windows/resources/res.rc
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/Errors.h b/launcher/windows/src/Errors.h
index 50a2409..7955823 100644
--- a/launcher/windows/src/Errors.h
+++ b/launcher/windows/src/Errors.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/ExtractUtils.c b/launcher/windows/src/ExtractUtils.c
index d96f40c..edbfa55 100644
--- a/launcher/windows/src/ExtractUtils.c
+++ b/launcher/windows/src/ExtractUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/ExtractUtils.h b/launcher/windows/src/ExtractUtils.h
index 98655b0..f816df8 100644
--- a/launcher/windows/src/ExtractUtils.h
+++ b/launcher/windows/src/ExtractUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/FileUtils.c b/launcher/windows/src/FileUtils.c
index 5ab272a..6c36fd6 100644
--- a/launcher/windows/src/FileUtils.c
+++ b/launcher/windows/src/FileUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/FileUtils.h b/launcher/windows/src/FileUtils.h
index 60db47b..0b01ace 100644
--- a/launcher/windows/src/FileUtils.h
+++ b/launcher/windows/src/FileUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/JavaUtils.c b/launcher/windows/src/JavaUtils.c
index 0f1a1dd..4fbf7f9 100644
--- a/launcher/windows/src/JavaUtils.c
+++ b/launcher/windows/src/JavaUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/JavaUtils.h b/launcher/windows/src/JavaUtils.h
index 4508085..fa9109d 100644
--- a/launcher/windows/src/JavaUtils.h
+++ b/launcher/windows/src/JavaUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/Launcher.c b/launcher/windows/src/Launcher.c
index 4c756f7..95bdcbd 100644
--- a/launcher/windows/src/Launcher.c
+++ b/launcher/windows/src/Launcher.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/Launcher.h b/launcher/windows/src/Launcher.h
index b3d827f..d062795 100644
--- a/launcher/windows/src/Launcher.h
+++ b/launcher/windows/src/Launcher.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/Main.c b/launcher/windows/src/Main.c
index dbb3c5d..5a819ee 100644
--- a/launcher/windows/src/Main.c
+++ b/launcher/windows/src/Main.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/Main.h b/launcher/windows/src/Main.h
index bfe0ee1..57c81ef 100644
--- a/launcher/windows/src/Main.h
+++ b/launcher/windows/src/Main.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/ProcessUtils.c b/launcher/windows/src/ProcessUtils.c
index 9abab4c..0fcd9dd 100644
--- a/launcher/windows/src/ProcessUtils.c
+++ b/launcher/windows/src/ProcessUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/ProcessUtils.h b/launcher/windows/src/ProcessUtils.h
index cc5859b..f553b20 100644
--- a/launcher/windows/src/ProcessUtils.h
+++ b/launcher/windows/src/ProcessUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/RegistryUtils.c b/launcher/windows/src/RegistryUtils.c
index e7d537d..e60bd60 100644
--- a/launcher/windows/src/RegistryUtils.c
+++ b/launcher/windows/src/RegistryUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/RegistryUtils.h b/launcher/windows/src/RegistryUtils.h
index 4ca8db4..c9851b0 100644
--- a/launcher/windows/src/RegistryUtils.h
+++ b/launcher/windows/src/RegistryUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/StringUtils.c b/launcher/windows/src/StringUtils.c
index 306d9bd..cf0423b 100644
--- a/launcher/windows/src/StringUtils.c
+++ b/launcher/windows/src/StringUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/StringUtils.h b/launcher/windows/src/StringUtils.h
index ecf0938..9cf775c 100644
--- a/launcher/windows/src/StringUtils.h
+++ b/launcher/windows/src/StringUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/SystemUtils.c b/launcher/windows/src/SystemUtils.c
index 41f0dbf..c8b423e 100644
--- a/launcher/windows/src/SystemUtils.c
+++ b/launcher/windows/src/SystemUtils.c
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/SystemUtils.h b/launcher/windows/src/SystemUtils.h
index f375398..69437f8 100644
--- a/launcher/windows/src/SystemUtils.h
+++ b/launcher/windows/src/SystemUtils.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
diff --git a/launcher/windows/src/Types.h b/launcher/windows/src/Types.h
index 379bff6..9fea21c 100644
--- a/launcher/windows/src/Types.h
+++ b/launcher/windows/src/Types.h
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists