aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/apps
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2018-08-17 21:47:31 +0200
committerTor Egge <Tor.Egge@broadpark.no>2018-08-17 21:50:57 +0200
commit592ba08a834c6e711da33dca6151ed6a482d0766 (patch)
treef34ff35e095c5e4ab41ef3fba7011ade4aaaa74a /searchlib/src/apps
parent0c29498fc46c1064c088afa4a34a57afbc40626e (diff)
Rename AttributeVector::saveAs() method to save().
Don't update attribute vector file name in the renamed method.
Diffstat (limited to 'searchlib/src/apps')
-rw-r--r--searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp b/searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp
index b0d5f1110ff..3f9a784d57a 100644
--- a/searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp
+++ b/searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp
@@ -200,7 +200,7 @@ LoadAttribute::Main()
vespalib::string saveFile = fileName + ".save";
std::cout << "saving attribute: " << saveFile << std::endl;
timer.SetNow();
- ptr->saveAs(saveFile);
+ ptr->save(saveFile);
std::cout << "save time: " << timer.MilliSecsToNow() / 1000 << " seconds " << std::endl;
}