Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion core/base/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ set(BASE_HEADERS
TUrl.h
TUUID.h
TVersionCheck.h
TVirtualAuth.h
TVirtualFFT.h
TVirtualGL.h
TVirtualMonitoring.h
Expand Down
1 change: 0 additions & 1 deletion core/base/inc/LinkDef3.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@
#pragma link C++ class TFileInfo+;
#pragma link C++ class TFileInfoMeta+;
#pragma link C++ class TFileCollection+;
#pragma link C++ class ROOT::Deprecated::TVirtualAuth;
#pragma link C++ class TVirtualMutex;
#pragma link C++ class ROOT::TVirtualRWMutex;
#pragma link C++ class TLockGuard;
Expand Down
9 changes: 0 additions & 9 deletions core/base/inc/TROOT.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,10 @@ namespace ROOT {
} // namespace Experimental
}

namespace ROOT::Deprecated::Internal {
TSeqCollection *GetListOfSecContexts(const TROOT &);
} // namespace ROOT::Deprecated::Internal

class TROOT : public TDirectory {

friend class TCling;
friend TROOT *ROOT::Internal::GetROOT2();
friend TSeqCollection *ROOT::Deprecated::Internal::GetListOfSecContexts(const TROOT &);

private:
Int_t fLineIsProcessing = 0; ///< To synchronize multi-threads
Expand Down Expand Up @@ -176,7 +171,6 @@ friend TSeqCollection *ROOT::Deprecated::Internal::GetListOfSecContexts(const TR
TSeqCollection *fMessageHandlers = nullptr; ///< List of message handlers
TSeqCollection *fStreamerInfo = nullptr; ///< List of active StreamerInfo classes
TCollection *fClassGenerators = nullptr; ///< List of user defined class generators;
TSeqCollection *fSecContexts = nullptr; ///< List of security contexts (TSecContext)
TSeqCollection *fClipboard = nullptr; ///< List of clipboard objects
TSeqCollection *fDataSets = nullptr; ///< List of data sets (TDSet or TChain)
AListOfEnums_t fEnums = nullptr; ///< List of enum types
Expand Down Expand Up @@ -266,9 +260,6 @@ friend TSeqCollection *ROOT::Deprecated::Internal::GetListOfSecContexts(const TR
TSeqCollection *GetListOfStreamerInfo() const { return fStreamerInfo; }
TSeqCollection *GetListOfMessageHandlers() const { return fMessageHandlers; }
TCollection *GetListOfClassGenerators() const { return fClassGenerators; }
TSeqCollection *GetListOfSecContexts() const
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we add an announcement in the release notes?

R__DEPRECATED(6, 42, "GetListOfSecContexts is deprecated. See README.AUTH for details.")
{ return ROOT::Deprecated::Internal::GetListOfSecContexts(*this); }
TSeqCollection *GetClipboard() const { return fClipboard; }
TSeqCollection *GetListOfDataSets() const { return fDataSets; }
TCollection *GetListOfEnums(Bool_t load = kFALSE);
Expand Down
51 changes: 0 additions & 51 deletions core/base/inc/TVirtualAuth.h

This file was deleted.

9 changes: 0 additions & 9 deletions core/base/src/TROOT.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ The following lists are accessible from gROOT object:
gROOT->GetListOfFiles
gROOT->GetListOfMappedFiles
gROOT->GetListOfSockets
gROOT->GetListOfSecContexts
gROOT->GetListOfCanvases
gROOT->GetListOfStyles
gROOT->GetListOfFunctions
Expand Down Expand Up @@ -172,11 +171,6 @@ FARPROC dlsym(void *library, const char *function_name)
#include "TWinNTSystem.h"
#endif

TSeqCollection *ROOT::Deprecated::Internal::GetListOfSecContexts(const TROOT &r)
{
return r.fSecContexts;
}

extern "C" void R__SetZipMode(int);

static DestroyInterpreter_t *gDestroyInterpreter = nullptr;
Expand Down Expand Up @@ -910,7 +904,6 @@ TROOT::TROOT(const char *name, const char *title, VoidFuncPtr_t *initfunc) : TDi
fBrowsables = (TList*)setNameLocked(new TList, "Browsables");
fCleanups = setNameLocked(new THashList, "Cleanups");
fMessageHandlers = setNameLocked(new TList, "MessageHandlers");
fSecContexts = setNameLocked(new TList, "SecContexts");
fClipboard = setNameLocked(new TList, "Clipboard");
fDataSets = setNameLocked(new TList, "DataSets");
fTypes = new TListOfTypes; fTypes->UseRWLock();
Expand All @@ -935,7 +928,6 @@ TROOT::TROOT(const char *name, const char *title, VoidFuncPtr_t *initfunc) : TDi
fRootFolder->AddFolder("Handlers", "List of Message Handlers",fMessageHandlers);
fRootFolder->AddFolder("Cleanups", "List of RecursiveRemove Collections",fCleanups);
fRootFolder->AddFolder("StreamerInfo","List of Active StreamerInfo Classes",fStreamerInfo);
fRootFolder->AddFolder("SecContexts","List of Security Contexts",fSecContexts);
fRootFolder->AddFolder("ROOT Memory","List of Objects in the gROOT Directory",fList);
fRootFolder->AddFolder("ROOT Files","List of Connected ROOT Files",fFiles);

Expand Down Expand Up @@ -1068,7 +1060,6 @@ TROOT::~TROOT()
fClosedObjects->Delete("slow"); // and closed files
fFiles->Delete("slow"); // and files
SafeDelete(fFiles);
fSecContexts->Delete("slow"); SafeDelete(fSecContexts); // and security contexts
fSockets->Delete(); SafeDelete(fSockets); // and sockets
fMappedFiles->Delete("slow"); // and mapped files
TSeqCollection *tl = fMappedFiles; fMappedFiles = nullptr; delete tl;
Expand Down
5 changes: 0 additions & 5 deletions etc/plugins/TVirtualAuth/P010_TRootAuth.C

This file was deleted.

5 changes: 0 additions & 5 deletions net/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
# For the list of contributors see $ROOTSYS/README/CREDITS.

add_subdirectory(net)
add_subdirectory(auth)

if(NOT WIN32 AND ssl)
add_subdirectory(rpdutils)
endif()

if(davix)
add_subdirectory(davix)
Expand Down
35 changes: 0 additions & 35 deletions net/auth/CMakeLists.txt

This file was deleted.

4 changes: 0 additions & 4 deletions net/auth/doc/index.txt

This file was deleted.

54 changes: 0 additions & 54 deletions net/auth/inc/AuthConst.h

This file was deleted.

20 changes: 0 additions & 20 deletions net/auth/inc/LinkDefRoot.h

This file was deleted.

Loading
Loading