File tree Expand file tree Collapse file tree 1 file changed +1
-21
lines changed
src/main/java/edu/ie3/datamodel/models/timeseries/repetitive Expand file tree Collapse file tree 1 file changed +1
-21
lines changed Original file line number Diff line number Diff line change 88import de .lmu .ifi .dbs .elki .math .statistics .distribution .GeneralizedExtremeValueDistribution ;
99import edu .ie3 .datamodel .models .profile .LoadProfile ;
1010import edu .ie3 .datamodel .models .value .load .RandomLoadValues ;
11- import java .util .Objects ;
1211import java .util .Set ;
1312import java .util .UUID ;
1413import javax .measure .quantity .Energy ;
@@ -35,27 +34,8 @@ public LoadProfile.RandomLoadProfile getLoadProfile() {
3534 return (LoadProfile .RandomLoadProfile ) super .getLoadProfile ();
3635 }
3736
38- @ Override
39- public boolean equals (Object o ) {
40- if (this == o ) return true ;
41- if (o == null || getClass () != o .getClass ()) return false ;
42- return super .equals (o );
43- }
44-
45- @ Override
46- public int hashCode () {
47- return Objects .hash (super .hashCode ());
48- }
49-
5037 @ Override
5138 public String toString () {
52- return "RandomLoadProfileTimeSeries{"
53- + "uuid="
54- + getUuid ()
55- + "loadProfile="
56- + getLoadProfile ()
57- + ", valueMapping="
58- + getValueMapping ()
59- + '}' ;
39+ return "Random" + super .toString ();
6040 }
6141}
You can’t perform that action at this time.
0 commit comments