Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated methods #114

Merged
merged 1 commit into from
Jan 5, 2024
Merged
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 @@ -35,18 +35,6 @@
public class IterableExpandPadding {
public static final int[] REGULAR_SIZES = {0, 1, 2, 3, 4, 8, 16, 32, 50, 100, 200, 300, 500, 1000, 1500, 2000};

/**
* Expand if iterable object.
*
* @param source the source
* @return the object
* @deprecated use {@link #expandIfIterable(Object, boolean)} instead
*/
@Deprecated(forRemoval = true)
public static Object expandIfIterable(Object source) {
return expandIfIterable(source, true, REGULAR_SIZES);
}

/**
* Expand if iterable object.
*
Expand All @@ -58,19 +46,6 @@ public static Object expandIfIterable(Object source, boolean padArray) {
return expandIfIterable(source, padArray, REGULAR_SIZES);
}

/**
* Expand if iterable object.
*
* @param source the source
* @param paddingBoundaries the padding boundaries
* @return the object
* @deprecated Use {@link #expandIfIterable(Object, boolean, int[])} instead
*/
@Deprecated(forRemoval = true)
public static Object expandIfIterable(Object source, @Nullable int[] paddingBoundaries) {
return expandIfIterable(source, true, paddingBoundaries);
}

/**
* Expand if iterable object.
*
Expand Down
Loading