Skip to content
Snippets Groups Projects
Commit 6174f860 authored by Steven Murray's avatar Steven Murray
Browse files

Removed redundant 'virtual' keyword from rdbms/wrapper/OcciConn.hpp

parent 63f2b2e0
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ public:
/**
* Idempotent close() method. The destructor calls this method.
*/
virtual void close() override;
void close() override;
/**
* Creates a prepared statement.
......@@ -67,17 +67,17 @@ public:
* @param autocommitMode The autocommit mode of the statement.
* @return The prepared statement.
*/
virtual std::unique_ptr<Stmt> createStmt(const std::string &sql, const AutocommitMode autocommitMode) override;
std::unique_ptr<Stmt> createStmt(const std::string &sql, const AutocommitMode autocommitMode) override;
/**
* Commits the current transaction.
*/
virtual void commit() override;
void commit() override;
/**
* Rolls back the current transaction.
*/
virtual void rollback() override;
void rollback() override;
/**
* Returns the names of all the tables in the database schema in alphabetical
......@@ -86,7 +86,7 @@ public:
* @return The names of all the tables in the database schema in alphabetical
* order.
*/
virtual std::list<std::string> getTableNames() override;
std::list<std::string> getTableNames() override;
/**
* Returns true if this connection is open.
......@@ -103,7 +103,7 @@ public:
* @return The names of all the sequences in the database schema in
* alphabetical order.
*/
virtual std::list<std::string> getSequenceNames() override;
std::list<std::string> getSequenceNames() override;
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment