Skip to content

Commit

Permalink
code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
hangum committed May 30, 2015
1 parent 78ee438 commit 1d48479
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Spatial Data Manager는 [Tadpole DB Hub](https://github.com/hangum/TadpoleForDBT

Download
===============
[Click me](http://sourceforge.net/projects/tadpoledbhub/files/v1.4.2/)
[Click me](https://sourceforge.net/projects/tadpolesdm/files/1.6.x/1.6.1/)

License
=======
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,11 @@ public void testGetSpatialTableColumn() {
Map<String, List<String>> mapSpatialTableColumn = spatialDB.getSpatialTableColumn();
if(mapSpatialTableColumn.isEmpty()) fail("Do not support spaatial database");

boolean isRiseError = false;
Set<String> tableColumn = mapSpatialTableColumn.keySet();
for (String strTable : tableColumn) {
List<String> listSpatialColumn = mapSpatialTableColumn.get(strTable);

if(listSpatialColumn.isEmpty()) {
isRiseError = true;
fail(strTable + " is not found spatial columns.");
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,11 @@ public void testGetSpatialTableColumn() {
Map<String, List<String>> mapSpatialTableColumn = spatialDB.getSpatialTableColumn();
if(mapSpatialTableColumn.isEmpty()) fail("Do not support spaatial database");

boolean isRiseError = false;
Set<String> tableColumn = mapSpatialTableColumn.keySet();
for (String strTable : tableColumn) {
List<String> listSpatialColumn = mapSpatialTableColumn.get(strTable);

if(listSpatialColumn.isEmpty()) {
isRiseError = true;
fail(strTable + " is not found spatial columns.");
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,11 @@ public void testGetSpatialTableColumn() {
Map<String, List<String>> mapSpatialTableColumn = spatialDB.getSpatialTableColumn();
if(mapSpatialTableColumn.isEmpty()) fail("Do not support spaatial database");

boolean isRiseError = false;
Set<String> tableColumn = mapSpatialTableColumn.keySet();
for (String strTable : tableColumn) {
List<String> listSpatialColumn = mapSpatialTableColumn.get(strTable);

if(listSpatialColumn.isEmpty()) {
isRiseError = true;
fail(strTable + " is not found spatial columns.");
}
}
Expand Down

0 comments on commit 1d48479

Please sign in to comment.