Skip to content
Closed
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 @@ -42,6 +42,13 @@
*/
abstract public class Selector {

/**
* @deprecated This constructor was exposed erroneously and will be removed in the next version. Use {@link #createSelector(String)} instead.
*/
@Deprecated(since="16", forRemoval=true)
public Selector() {
}

private static class UniversalSelector {
private static final Selector INSTANCE =
new SimpleSelector("*", null, null, null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ public class ShapeConverter extends StyleConverter<String, Shape> {

public static StyleConverter<String, Shape> getInstance() { return INSTANCE; }

/**
* @deprecated This constructor was exposed erroneously and will be removed in the next version. Use {@link #getInstance()} instead.
*/
@Deprecated(since="16", forRemoval=true)
public ShapeConverter() {
}

@Override public Shape convert(ParsedValue<String, Shape> value, Font font) {

Shape shape = super.getCachedValue(value);
Expand Down