From 743cfe9ae1406028d79f95a39ed3b7a0f4395e6f Mon Sep 17 00:00:00 2001 From: Leandro Martinez Date: Thu, 2 May 2024 15:14:46 -0300 Subject: [PATCH] do not export explicit public names --- src/CellListMap.jl | 1 - src/ParticleSystem.jl | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/CellListMap.jl b/src/CellListMap.jl index 2ec5e7ff..c0def25e 100644 --- a/src/CellListMap.jl +++ b/src/CellListMap.jl @@ -20,7 +20,6 @@ export OrthorhombicCell export NonPeriodicCell export unitcelltype export nbatches -@compat public copy_output, reset_output!, reducer # Testing file const argon_pdb_file = joinpath("$(@__DIR__ )/../test/gromacs/argon/cubic.pdb") diff --git a/src/ParticleSystem.jl b/src/ParticleSystem.jl index b4eadbc1..00fc6a1f 100644 --- a/src/ParticleSystem.jl +++ b/src/ParticleSystem.jl @@ -1,11 +1,8 @@ export ParticleSystem export update_cutoff! export update_unitcell! - -export copy_output export resize_output! -export reset_output!, reset_output -export reducer!, reducer +@compat public copy_output, reset_output!, reset_output, reducer, reducer! # Types of variables that have support for multi-threading without having # to explicit add methods to copy_output, reset_output!, and reducer functions.