Remove redundant author doc comments

This commit is contained in:
IAmActuallyCthulhu
2019-08-10 07:28:17 -05:00
parent b18747af4b
commit 82b9557803
138 changed files with 18 additions and 485 deletions
-4
View File
@@ -40,10 +40,6 @@
#include <sys/types.h>
#include <unistd.h>
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class DirAccessUnix : public DirAccess {
DIR *dir_stream;
-4
View File
@@ -38,10 +38,6 @@
#if defined(UNIX_ENABLED) || defined(LIBC_FILEIO_ENABLED)
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
typedef void (*CloseNotificationFunc)(const String &p_file, int p_flags);
class FileAccessUnix : public FileAccess {
-4
View File
@@ -31,10 +31,6 @@
#ifndef OS_UNIX_H
#define OS_UNIX_H
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
#ifdef UNIX_ENABLED
#include "core/os/os.h"
+1 -3
View File
@@ -36,9 +36,7 @@
#if defined(UNIX_ENABLED) || defined(PTHREAD_ENABLED)
#include <semaphore.h>
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class SemaphorePosix : public Semaphore {
mutable sem_t sem;
-4
View File
@@ -31,10 +31,6 @@
#ifndef THREAD_POSIX_H
#define THREAD_POSIX_H
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
#if (defined(UNIX_ENABLED) || defined(PTHREAD_ENABLED)) && !defined(NO_THREADS)
#include "core/os/thread.h"