Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugged
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
Container Registry
Model registry
Operate
Environments
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
Orekit
Rugged
Commits
a0f6317f
Commit
a0f6317f
authored
7 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Fixed checkstyle errors.
parent
1114174e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/orekit/rugged/errors/RuggedException.java
+3
-3
3 additions, 3 deletions
src/main/java/org/orekit/rugged/errors/RuggedException.java
src/main/java/org/orekit/rugged/los/PolynomialRotation.java
+1
-1
1 addition, 1 deletion
src/main/java/org/orekit/rugged/los/PolynomialRotation.java
with
4 additions
and
4 deletions
src/main/java/org/orekit/rugged/errors/RuggedException.java
+
3
−
3
View file @
a0f6317f
...
...
@@ -51,7 +51,7 @@ public class RuggedException extends Exception implements LocalizedException {
* @param specifier format specifier (to be translated)
* @param parts parts to insert in the format (no translation)
*/
public
RuggedException
(
final
Localizable
specifier
,
final
Object
...
parts
)
{
public
RuggedException
(
final
Localizable
specifier
,
final
Object
...
parts
)
{
this
.
specifier
=
specifier
;
this
.
parts
=
(
parts
==
null
)
?
new
Object
[
0
]
:
parts
.
clone
();
}
...
...
@@ -63,7 +63,7 @@ public class RuggedException extends Exception implements LocalizedException {
* @param parts parts to insert in the format (no translation)
*/
public
RuggedException
(
final
Throwable
cause
,
final
Localizable
specifier
,
final
Object
...
parts
)
{
final
Object
...
parts
)
{
super
(
cause
);
this
.
specifier
=
specifier
;
this
.
parts
=
(
parts
==
null
)
?
new
Object
[
0
]
:
parts
.
clone
();
...
...
@@ -109,7 +109,7 @@ public class RuggedException extends Exception implements LocalizedException {
* @return a message string
*/
private
static
String
buildMessage
(
final
Locale
locale
,
final
Localizable
specifier
,
final
Object
...
parts
)
{
final
Object
...
parts
)
{
return
(
specifier
==
null
)
?
""
:
new
MessageFormat
(
specifier
.
getLocalizedString
(
locale
),
locale
).
format
(
parts
);
}
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/orekit/rugged/los/PolynomialRotation.java
+
1
−
1
View file @
a0f6317f
...
...
@@ -81,7 +81,7 @@ public class PolynomialRotation implements LOSTransform {
public
PolynomialRotation
(
final
String
name
,
final
Vector3D
axis
,
final
AbsoluteDate
referenceDate
,
final
double
...
angleCoeffs
)
{
final
double
...
angleCoeffs
)
{
this
.
axis
=
axis
;
this
.
referenceDate
=
referenceDate
;
this
.
coefficientsDrivers
=
new
ParameterDriver
[
angleCoeffs
.
length
];
...
...
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