Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibLaserCut
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Elektronikföreningen Admittansen
LibLaserCut
Commits
51f68d7c
Commit
51f68d7c
authored
12 years ago
by
Thomas Oster
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Mark in and out streams in drivers as transient, so they get not serialized
parent
7a8115a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/com/t_oster/liblasercut/drivers/EpilogCutter.java
+3
-4
3 additions, 4 deletions
src/com/t_oster/liblasercut/drivers/EpilogCutter.java
with
3 additions
and
4 deletions
src/com/t_oster/liblasercut/drivers/EpilogCutter.java
+
3
−
4
View file @
51f68d7c
...
...
@@ -51,10 +51,9 @@ abstract class EpilogCutter extends LaserCutter
private
static
final
double
FOCUSWIDTH
=
0.0252
;
//How much mm/unit the focus values are
private
String
hostname
=
"10.0.0.1"
;
private
int
port
=
515
;
private
Socket
connection
;
private
boolean
autofocus
=
false
;
private
InputStream
in
;
private
OutputStream
out
;
private
transient
InputStream
in
;
private
transient
OutputStream
out
;
private
int
mm2focus
(
float
mm
)
{
...
...
@@ -229,7 +228,7 @@ abstract class EpilogCutter extends LaserCutter
}
else
{
connection
=
new
Socket
();
Socket
connection
=
new
Socket
();
connection
.
connect
(
new
InetSocketAddress
(
hostname
,
port
),
NETWORK_TIMEOUT
);
in
=
new
BufferedInputStream
(
connection
.
getInputStream
());
out
=
new
BufferedOutputStream
(
connection
.
getOutputStream
());
...
...
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