Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jadx
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
jadx
Commits
1213ff26
Unverified
Commit
1213ff26
authored
Jul 30, 2018
by
skylot
Committed by
GitHub
Jul 30, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #324 from FlXME/patch-1
Performance issue when building strings
parents
3bf93f1f
fdaf8492
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
CertificateManager.java
...-gui/src/main/java/jadx/gui/utils/CertificateManager.java
+1
-1
No files found.
jadx-gui/src/main/java/jadx/gui/utils/CertificateManager.java
View file @
1213ff26
...
...
@@ -193,7 +193,7 @@ public class CertificateManager {
char
[]
hexDigits
=
{
'0'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
'8'
,
'9'
,
'A'
,
'B'
,
'C'
,
'D'
,
'E'
,
'F'
};
StringBu
ffer
buf
=
new
StringBuff
er
(
bytes
.
length
*
3
);
StringBu
ilder
buf
=
new
StringBuild
er
(
bytes
.
length
*
3
);
for
(
int
i
=
0
;
i
<
bytes
.
length
;
++
i
)
{
buf
.
append
(
hexDigits
[(
bytes
[
i
]
&
0xf0
)
>>
4
]);
...
...
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