Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eclipse Projects
Eclipse Titan
titan.EclipsePlug-ins
Commits
eef52705
Commit
eef52705
authored
Oct 10, 2017
by
Kristof Szabados
Committed by
Gerrit Code Review
Oct 10, 2017
Browse files
Merge "log_octet() was implemented in TtcnLogger"
parents
05b7182e
5d60ead0
Changes
1
Hide whitespace changes
Inline
Side-by-side
org.eclipse.titan.runtime/src/org/eclipse/titan/runtime/core/TtcnLogger.java
View file @
eef52705
...
...
@@ -359,7 +359,8 @@ public final class TtcnLogger {
}
public
static
void
log_octet
(
final
char
aOctet
)
{
// TODO Auto-generated method stub
log_char
(
TitanHexString
.
HEX_DIGITS
.
charAt
((
aOctet
&
0xF0
)>>
4
));
log_char
(
TitanHexString
.
HEX_DIGITS
.
charAt
(
aOctet
&
0x0F
));
}
public
static
void
log_bit
(
final
byte
aBit
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment