-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make the TableBase insert* methods protected - should only be used by the lib. #71
Comments
Those methods were removed as part of the issue #70. |
Ups - I think they should still be used. They are faster than the new On Thu, Dec 20, 2012 at 7:22 PM, Nikolche Mihajlovski <
|
Hmm, it's not possible to make them protected without changing the design, because AbstractTable needs these methods to be public, to be able to call them. So, if the methods are protected, we need to call them from the same package, or from a sub-class of Table. Another option is to construct some delegator object in the Table class, and put the insertXXX methods in the delegator, but the delegator will need a way to be exposed outside of the table (e.g. public method again) - this solution will decrease the number of directly exposed methods, but it's makes the design more complicated. |
No description provided.
The text was updated successfully, but these errors were encountered: