Skip to content
Snippets Groups Projects
Commit be471aa0 authored by Christian Wulf's avatar Christian Wulf
Browse files

changed public to package-private

parent 1003c059
No related branches found
No related tags found
No related merge requests found
......@@ -17,15 +17,15 @@ public class AnalysisConfiguration {
private final Set<Stage> finiteProducerStages = new HashSet<Stage>();
private final Set<Stage> infiniteProducerStages = new HashSet<Stage>();
public Set<Stage> getConsumerStages() {
Set<Stage> getConsumerStages() {
return this.consumerStages;
}
public Set<Stage> getFiniteProducerStages() {
Set<Stage> getFiniteProducerStages() {
return this.finiteProducerStages;
}
public Set<Stage> getInfiniteProducerStages() {
Set<Stage> getInfiniteProducerStages() {
return this.infiniteProducerStages;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment