Skip to content

Commit

Permalink
Make BackupModule public
Browse files Browse the repository at this point in the history
  • Loading branch information
klaren committed Feb 21, 2018
1 parent 9b1ff37 commit 33d9a15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import org.neo4j.kernel.monitoring.Monitors;
import org.neo4j.logging.LogProvider;

class BackupModule
public class BackupModule
{
private final OutsideWorld outsideWorld;
private final LogProvider logProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
import org.neo4j.causalclustering.catchup.storecopy.StoreCopyClient;
import org.neo4j.causalclustering.catchup.tx.TransactionLogCatchUpFactory;
import org.neo4j.causalclustering.catchup.tx.TxPullClient;
import org.neo4j.causalclustering.handlers.VoidPipelineWrapperFactory;
import org.neo4j.causalclustering.handlers.PipelineWrapper;
import org.neo4j.causalclustering.handlers.DuplexPipelineWrapperFactory;
import org.neo4j.causalclustering.handlers.PipelineWrapper;
import org.neo4j.causalclustering.handlers.VoidPipelineWrapperFactory;
import org.neo4j.io.fs.FileSystemAbstraction;
import org.neo4j.io.pagecache.PageCache;
import org.neo4j.kernel.configuration.Config;
Expand All @@ -43,7 +43,7 @@
* By having this factory we can wait until the configuration has been loaded and the provide all the classes required
* for backups that are dependant on the config.
*/
class BackupSupportingClassesFactory
public class BackupSupportingClassesFactory
{
private static final long INACTIVITY_TIMEOUT_MILLIS = 60 * 1000;

Expand Down

0 comments on commit 33d9a15

Please sign in to comment.