Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Julien Lopez
QueryR
Commits
d4037179
Commit
d4037179
authored
8 years ago
by
Adam Welc
Browse files
Options
Downloads
Patches
Plain Diff
Added final modifiers.
parent
ed55017f
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java
+12
-12
12 additions, 12 deletions
....r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java
with
12 additions
and
12 deletions
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java
+
12
−
12
View file @
d4037179
...
@@ -204,7 +204,7 @@ public class RChannel {
...
@@ -204,7 +204,7 @@ public class RChannel {
private
static
class
TransmitterCommon
extends
RSerialize
.
RefCounter
{
private
static
class
TransmitterCommon
extends
RSerialize
.
RefCounter
{
protected
static
class
SerializedRef
{
protected
static
class
SerializedRef
{
private
int
index
;
private
final
int
index
;
public
SerializedRef
(
int
index
)
{
public
SerializedRef
(
int
index
)
{
this
.
index
=
index
;
this
.
index
=
index
;
...
@@ -217,7 +217,7 @@ public class RChannel {
...
@@ -217,7 +217,7 @@ public class RChannel {
protected
static
class
SerializedList
{
protected
static
class
SerializedList
{
private
RList
list
;
private
final
RList
list
;
SerializedList
(
RList
list
)
{
SerializedList
(
RList
list
)
{
this
.
list
=
list
;
this
.
list
=
list
;
...
@@ -231,8 +231,8 @@ public class RChannel {
...
@@ -231,8 +231,8 @@ public class RChannel {
protected
static
class
SerializedEnv
{
protected
static
class
SerializedEnv
{
public
static
class
Bindings
{
public
static
class
Bindings
{
private
String
[]
names
;
private
final
String
[]
names
;
private
Object
[]
values
;
private
final
Object
[]
values
;
Bindings
(
String
[]
names
,
Object
[]
values
)
{
Bindings
(
String
[]
names
,
Object
[]
values
)
{
this
.
names
=
names
;
this
.
names
=
names
;
...
@@ -270,9 +270,9 @@ public class RChannel {
...
@@ -270,9 +270,9 @@ public class RChannel {
protected
static
class
SerializedPromise
{
protected
static
class
SerializedPromise
{
private
Object
env
;
private
final
Object
env
;
private
Object
value
;
private
final
Object
value
;
private
byte
[]
serializedExpr
;
private
final
byte
[]
serializedExpr
;
public
SerializedPromise
(
Object
env
,
Object
value
,
byte
[]
serializedExpr
)
{
public
SerializedPromise
(
Object
env
,
Object
value
,
byte
[]
serializedExpr
)
{
this
.
env
=
env
;
this
.
env
=
env
;
...
@@ -295,9 +295,9 @@ public class RChannel {
...
@@ -295,9 +295,9 @@ public class RChannel {
}
}
protected
static
class
SerializedFunction
{
protected
static
class
SerializedFunction
{
private
RAttributes
attributes
;
private
final
RAttributes
attributes
;
private
Object
env
;
private
final
Object
env
;
private
byte
[]
serializedDef
;
private
final
byte
[]
serializedDef
;
public
SerializedFunction
(
RAttributes
attributes
,
Object
env
,
byte
[]
serializedDef
)
{
public
SerializedFunction
(
RAttributes
attributes
,
Object
env
,
byte
[]
serializedDef
)
{
this
.
attributes
=
attributes
;
this
.
attributes
=
attributes
;
...
@@ -320,8 +320,8 @@ public class RChannel {
...
@@ -320,8 +320,8 @@ public class RChannel {
protected
static
class
SerializedAttributable
{
protected
static
class
SerializedAttributable
{
private
RAttributes
attributes
;
private
final
RAttributes
attributes
;
private
byte
[]
serializedAttributable
;
private
final
byte
[]
serializedAttributable
;
public
SerializedAttributable
(
RAttributes
attributes
,
byte
[]
serializedAttributable
)
{
public
SerializedAttributable
(
RAttributes
attributes
,
byte
[]
serializedAttributable
)
{
this
.
attributes
=
attributes
;
this
.
attributes
=
attributes
;
...
...
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