From 05aaf75829d2071601668a30d2dc323a15711e67 Mon Sep 17 00:00:00 2001 From: gphilip Date: Tue, 30 Oct 2012 14:46:03 +0100 Subject: [PATCH] Restore ability to diff with another DataTable --- core/src/main/java/cucumber/api/DataTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/cucumber/api/DataTable.java b/core/src/main/java/cucumber/api/DataTable.java index 978dd3b56c..e0c0f7e9e7 100644 --- a/core/src/main/java/cucumber/api/DataTable.java +++ b/core/src/main/java/cucumber/api/DataTable.java @@ -143,7 +143,7 @@ public void diff(List other) throws TableDiffException { * @param other the other table to diff with. * @throws TableDiffException if the tables are different. */ - void diff(DataTable other) throws TableDiffException { + public void diff(DataTable other) throws TableDiffException { new TableDiffer(this, other).calculateDiffs(); }