Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QcmpCompressionLibrary
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BioinformaticDataCompression
QcmpCompressionLibrary
Commits
60a2e35f
Commit
60a2e35f
authored
4 years ago
by
Vojtech Moravec
Browse files
Options
Downloads
Patches
Plain Diff
Remove overflow and underflow check in `shortArrayToIntArray`
parent
306bd1a8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/azgracompress/utilities/TypeConverter.java
+1
-6
1 addition, 6 deletions
src/main/java/azgracompress/utilities/TypeConverter.java
with
1 addition
and
6 deletions
src/main/java/azgracompress/utilities/TypeConverter.java
+
1
−
6
View file @
60a2e35f
...
@@ -22,13 +22,8 @@ public class TypeConverter {
...
@@ -22,13 +22,8 @@ public class TypeConverter {
public
static
int
[]
shortArrayToIntArray
(
final
short
[]
src
)
{
public
static
int
[]
shortArrayToIntArray
(
final
short
[]
src
)
{
int
[]
result
=
new
int
[
src
.
length
];
int
[]
result
=
new
int
[
src
.
length
];
int
intValue
;
for
(
int
i
=
0
;
i
<
src
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
src
.
length
;
i
++)
{
intValue
=
shortToInt
(
src
[
i
]);
result
[
i
]
=
shortToInt
(
src
[
i
]);
if
(
intValue
<
U16
.
Min
||
intValue
>
U16
.
Max
)
{
throw
new
RuntimeException
(
"Source value is outside of bounds for 16-bit unsigned integer."
);
}
result
[
i
]
=
intValue
;
}
}
return
result
;
return
result
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment