Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
compilerconstruction
ssm
Commits
9776d888
Commit
9776d888
authored
Jun 05, 2014
by
Joost Rijneveld
Browse files
Changed promptChar to use codePointAt rather than ByteBuffer.
parent
306ed35b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/nl/uu/cs/ssmui/SSMRunner.java
View file @
9776d888
...
...
@@ -683,13 +683,7 @@ public class SSMRunner extends JFrame
if
(
s
.
length
()
==
0
)
{
continue
;
}
byte
[]
b
=
{};
try
{
b
=
s
.
getBytes
(
"UTF-32BE"
);
}
catch
(
UnsupportedEncodingException
e
)
{
println
(
"Error: UTF-32 encoding missing."
);
}
return
ByteBuffer
.
wrap
(
b
).
getInt
();
return
s
.
codePointAt
(
0
);
}
}
...
...
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