Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public class ExportCommandOptions {
protected Integer maxThreads;

/**
* @deprecated As of release 3.6.2. Will be removed in release 4.0.0. Use --max-threads instead
* @deprecated As of release 3.17.0. Will be removed in release 4.0.0. Use --max-threads instead
*/
@Deprecated
@CommandLine.Option(
Expand All @@ -118,7 +118,10 @@ public class ExportCommandOptions {
// TODO: test that -si false, works
protected boolean scanStartInclusive;

// Deprecated option - kept for backward compatibility
/**
* @deprecated As of release 3.17.0. Will be removed in release 4.0.0. Use --start-inclusive
* instead (inverted logic).
*/
@CommandLine.Option(
names = {DEPRECATED_START_EXCLUSIVE_OPTION},
description = "Deprecated: Use --start-inclusive instead (inverted logic)",
Expand All @@ -139,7 +142,10 @@ public class ExportCommandOptions {
defaultValue = "true")
protected boolean scanEndInclusive;

// Deprecated option - kept for backward compatibility
/**
* @deprecated As of release 3.17.0. Will be removed in release 4.0.0. Use --end-inclusive instead
* (inverted logic).
*/
@CommandLine.Option(
names = {DEPRECATED_END_EXCLUSIVE_OPTION},
description = "Deprecated: Use --end-inclusive instead (inverted logic)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ImportCommandOptions {
protected Integer maxThreads;

/**
* @deprecated As of release 3.6.2. Will be removed in release 4.0.0. Use --max-threads instead
* @deprecated As of release 3.17.0. Will be removed in release 4.0.0. Use --max-threads instead
*/
@Deprecated
@CommandLine.Option(
Expand Down Expand Up @@ -75,7 +75,7 @@ public class ImportCommandOptions {
protected String controlFilePath;

/**
* @deprecated As of release 3.6.2. Will be removed in release 4.0.0. Use --enable-log-success
* @deprecated As of release 3.17.0. Will be removed in release 4.0.0. Use --enable-log-success
* instead
*/
@Deprecated
Expand Down