Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ssm
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Wietze Mulder
ssm
Commits
9776d888
Commit
9776d888
authored
Jun 05, 2014
by
Joost Rijneveld
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed promptChar to use codePointAt rather than ByteBuffer.
parent
306ed35b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
src/nl/uu/cs/ssmui/SSMRunner.java
src/nl/uu/cs/ssmui/SSMRunner.java
+1
-7
No files found.
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