Convert tabs to spaces. No functional changes.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2172 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2011-08-02 20:26:32 +00:00
parent 123614539d
commit 7fd6e22af4
77 changed files with 1194 additions and 1192 deletions

View File

@ -1,4 +1,4 @@
/*
/**
Copyright 2010, Google Inc.
All rights reserved.

View File

@ -270,9 +270,10 @@ public class JsonImporterTests extends ImporterTest {
sb.append("[");
for(int i = 1; i < 7; i++){
sb.append(getTypicalElement(i));
if(i < 6)
if(i < 6) {
sb.append(",");
}
}
sb.append("]");
return sb.toString();
}
@ -282,12 +283,12 @@ public class JsonImporterTests extends ImporterTest {
sb.append("[");
for(int i = 1; i < 7; i++){
sb.append(getElementWithDuplicateSubElement(i));
if(i < 6)
if(i < 6) {
sb.append(",");
}
}
sb.append("]");
return sb.toString();
}
public static String getSampleWithLineBreak(){
@ -336,9 +337,10 @@ public class JsonImporterTests extends ImporterTest {
"\"title\" : \"Book title " + i + "\"," +
"\"publish_date\" : \"2010-05-26\"" +
"}");
if(i < 6)
if(i < 6) {
sb.append(",");
}
}
sb.append("]");
return sb.toString();
}