Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(82)

Unified Diff: icu4j/main/classes/core/src/com/ibm/icu/number/LocalizedNumberFormatter.java

Issue 335150043: Refreshing Number Parsing: ICU4J Base URL: svn+icussh://source.icu-project.org/repos/icu/trunk/
Patch Set: Replying to Andy feedback round one. See commit message. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: icu4j/main/classes/core/src/com/ibm/icu/number/LocalizedNumberFormatter.java
===================================================================
--- icu4j/main/classes/core/src/com/ibm/icu/number/LocalizedNumberFormatter.java (revision 40724)
+++ icu4j/main/classes/core/src/com/ibm/icu/number/LocalizedNumberFormatter.java (working copy)
@@ -38,8 +38,8 @@
}
/**
- * Format the given byte, short, int, or long to a string using the settings specified in the NumberFormatter fluent
- * setting chain.
+ * Format the given byte, short, int, or long to a string using the settings specified in the
+ * NumberFormatter fluent setting chain.
*
* @param input
* The number to format.
@@ -53,8 +53,8 @@
}
/**
- * Format the given float or double to a string using the settings specified in the NumberFormatter fluent setting
- * chain.
+ * Format the given float or double to a string using the settings specified in the NumberFormatter
+ * fluent setting chain.
*
* @param input
* The number to format.
@@ -68,8 +68,8 @@
}
/**
- * Format the given {@link BigInteger}, {@link BigDecimal}, or other {@link Number} to a string using the settings
- * specified in the NumberFormatter fluent setting chain.
+ * Format the given {@link BigInteger}, {@link BigDecimal}, or other {@link Number} to a string using
+ * the settings specified in the NumberFormatter fluent setting chain.
*
* @param input
* The number to format.
@@ -83,12 +83,12 @@
}
/**
- * Format the given {@link Measure} or {@link CurrencyAmount} to a string using the settings specified in the
- * NumberFormatter fluent setting chain.
+ * Format the given {@link Measure} or {@link CurrencyAmount} to a string using the settings
+ * specified in the NumberFormatter fluent setting chain.
*
* <p>
- * The unit specified here overrides any unit that may have been specified in the setter chain. This method is
- * intended for cases when each input to the number formatter has a different unit.
+ * The unit specified here overrides any unit that may have been specified in the setter chain. This
+ * method is intended for cases when each input to the number formatter has a different unit.
*
* @param input
* The number to format.
@@ -115,8 +115,9 @@
}
/**
- * This is the core entrypoint to the number formatting pipeline. It performs self-regulation: a static code path
- * for the first few calls, and compiling a more efficient data structure if called repeatedly.
+ * This is the core entrypoint to the number formatting pipeline. It performs self-regulation: a
+ * static code path for the first few calls, and compiling a more efficient data structure if called
+ * repeatedly.
*
* <p>
* This function is very hot, being called in every call to the number formatting pipeline.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b