Skip to content

Commit 5efb947

Browse files
authored
Change method parameter from Boolean to boolean (#1275)
1 parent 6daa05a commit 5efb947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/tech/tablesaw/api/Table.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,14 +1658,14 @@ private Table transpose(
16581658
* <p>This kind of structure often makes for a good intermediate format for performing subsequent
16591659
* transformations. It is especially useful when combined with the {@link #cast()} operation
16601660
*
1661-
* @param idVariables A list of column names intended to be used as identifiers. In he example,
1661+
* @param idVariables A list of column names intended to be used as identifiers. In the example,
16621662
* only patient_id would be an identifier
16631663
* @param measuredVariables A list of columns intended to be used as measured variables. All
16641664
* columns must have the same type
16651665
* @param dropMissing drop any row where the value is missing
16661666
*/
16671667
public Table melt(
1668-
List<String> idVariables, List<NumericColumn<?>> measuredVariables, Boolean dropMissing) {
1668+
List<String> idVariables, List<NumericColumn<?>> measuredVariables, boolean dropMissing) {
16691669

16701670
Table result = Table.create(name);
16711671
for (String idColName : idVariables) {

0 commit comments

Comments
 (0)