Skip to content

Commit 78504ae

Browse files
committed
not needed
1 parent 5b39858 commit 78504ae

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/monkstone/MathToolModule.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -167,17 +167,10 @@ public static IRubyObject norm_strict(ThreadContext context, IRubyObject recv, I
167167
double max = Math.max(start, stop);
168168
double min = Math.min(start, stop);
169169
if (value < min) {
170-
<<<<<<< HEAD
171-
value = min;
172-
}
173-
if (value > max) {
174-
value = max;
175-
=======
176170
return mapMt(context, min, start, stop, 0, 1.0);
177171
}
178172
if (value > max) {
179173
return mapMt(context, max, start, stop, 0, 1.0);
180-
>>>>>>> b501fc57c07166463e8cab84e4ca69a325f6508e
181174
}
182175
return mapMt(context, value, start, stop, 0, 1.0);
183176
}

0 commit comments

Comments
 (0)