-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
4 spaces indentation and Group example #93
Conversation
// @@EndShow@@ | ||
} | ||
|
||
static void Assert(boolean check) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bmunkholm perhaps we should reconsider keeping this Assert method, as assert (built-in) does not do anything unless when running in test mode. I guess that was your original thinking
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh yes - that was it...
// Brian
On Thu, Aug 15, 2013 at 11:29 AM, mekjaer notifications@github.com wrote:
In doc/ref/examples/SharedGroupIntro.java:
//Get the size of the table
long size = table.size();
//Size should be 3, as we have added 3 rows
Assert(size == 3);
} finally {
//Always end the read transaction
rt.endRead();
}
// @@EndShow@@
- }
- static void Assert(boolean check) {
@bmunkholm https://github.com/bmunkholm perhaps we should reconsider
keeping this Assert method, as assert (built-in) does not do anything
unless when running in test mode. I guess that was your original thinking—
Reply to this email directly or view it on GitHubhttps://github.com//pull/93/files#r5786331
.
@@ -0,0 +1,2 @@ | |||
/bin | |||
/bin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At most one "/bin" required
4 spaces indentation and Group example
No description provided.