Skip to content

Commit aac7062

Browse files
committed
Fixed style
1 parent 7a6281e commit aac7062

File tree

1 file changed

+4
-3
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/floats

1 file changed

+4
-3
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/floats/FloatUtils.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private static boolean isAsciiSpace(char c) {
6868
* followed by a digit and removes them. Does not create a copy if the original String does not
6969
* need any cleanup. Combines _PyUnicode_TransformDecimalAndSpaceToASCII and
7070
* _Py_string_to_number_with_underscores.
71-
*
71+
*
7272
* @param src the String to transform
7373
* @return the transformed String, {@code src} if the input does not need cleanup or
7474
* {@code null} if there are invalid underscores or unicode characters other than
@@ -147,7 +147,7 @@ public StringToDoubleResult(double value, int position) {
147147
* </ul>
148148
* Implements PyOS_string_to_double and _PyOS_ascii_strtod except error handling and handling of
149149
* locale-specific decimal point.
150-
*
150+
*
151151
* @param str the string to parse
152152
* @param start starting position in the string
153153
* @param len length of the string
@@ -226,7 +226,8 @@ public static StringToDoubleResult stringToDouble(String str, int start, int len
226226
}
227227
return new StringToDoubleResult(d, i);
228228
} catch (NumberFormatException e) {
229-
// Should not happen since the input to Double.parseDouble() / BigDecimal(String) should be correct
229+
// Should not happen since the input to Double.parseDouble() / BigDecimal(String) should
230+
// be correct
230231
return null;
231232
}
232233
}

0 commit comments

Comments
 (0)