Skip to content

Commit

Permalink
chore: Clean-up [DHIS2-18370]
Browse files Browse the repository at this point in the history
  • Loading branch information
maikelarabori committed Dec 16, 2024
1 parent 08f3b09 commit d31972d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
import lombok.Getter;
import lombok.Setter;
import org.apache.commons.lang3.tuple.Triple;
import org.hisp.dhis.analytics.Aggregation;
import org.hisp.dhis.analytics.AggregationType;
import org.hisp.dhis.analytics.QueryKey;
import org.hisp.dhis.eventvisualization.EventRepetition;
Expand Down Expand Up @@ -87,12 +86,6 @@ public class BaseDimensionalObject extends BaseNameableObject implements Dimensi
/** The option set associated with the dimension, if any. */
private transient OptionSet optionSet;

/** The option set saved by the client, if any. */
private transient OptionSet optionSetItem;

/** The client's aggregation type. */
private transient Aggregation aggregation;

/** The dimensional items for this dimension. */
private List<DimensionalItemObject> items = new ArrayList<>();

Expand Down Expand Up @@ -423,20 +416,6 @@ public OptionSet getOptionSet() {
return optionSet;
}

@Override
@JsonProperty
@JacksonXmlProperty(namespace = DxfNamespaces.DXF_2_0)
public OptionSet getOptionSetItem() {
return optionSetItem;
}

@Override
@JsonProperty
@JacksonXmlProperty(namespace = DxfNamespaces.DXF_2_0)
public Aggregation getAggregation() {
return aggregation;
}

@Override
@JsonProperty
@JsonDeserialize(contentAs = BaseDimensionalItemObject.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.hisp.dhis.analytics.Aggregation;
import org.hisp.dhis.analytics.AggregationType;
import org.hisp.dhis.category.Category;
import org.hisp.dhis.category.CategoryOption;
Expand Down Expand Up @@ -159,12 +158,6 @@ public interface DimensionalObject extends NameableObject, GroupableItem {
/** Returns the option set of the dimension, if any. */
OptionSet getOptionSet();

/** The option set saved by the client, if any. */
OptionSet getOptionSetItem();

/** The client's aggregation type. */
Aggregation getAggregation();

/** Dimension items. */
List<DimensionalItemObject> getItems();

Expand Down

0 comments on commit d31972d

Please sign in to comment.