diff options
Diffstat (limited to 'Source/SPDotExporter.m')
-rw-r--r-- | Source/SPDotExporter.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPDotExporter.m b/Source/SPDotExporter.m index 62cfbc48..13bf13a5 100644 --- a/Source/SPDotExporter.m +++ b/Source/SPDotExporter.m @@ -175,10 +175,10 @@ } // Get the column references. Currently the columns themselves are an array, - // while reference columns and tables are comma separated if there are more than + // while tables are comma separated if there are more than // one. Only use the first of each for the time being. NSArray *originColumns = [constraint objectForKey:@"columns"]; - NSArray *referenceColumns = [[constraint objectForKey:@"ref_columns"] componentsSeparatedByString:@","]; + NSArray *referenceColumns = [constraint objectForKey:@"ref_columns"]; NSString *extra = @""; |