Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tlatools
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
tlatools
Commits
f6b65522
Commit
f6b65522
authored
10 months ago
by
Jan Gruteser
Browse files
Options
Downloads
Patches
Plain Diff
minor fix
parent
62cb935f
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tlatools/src/tla2sany/explorer/ExploreNode.java
+0
-4
0 additions, 4 deletions
tlatools/src/tla2sany/explorer/ExploreNode.java
tlatools/src/tlc2/tool/fp/DiskFPSet.java
+1
-20
1 addition, 20 deletions
tlatools/src/tlc2/tool/fp/DiskFPSet.java
with
1 addition
and
24 deletions
tlatools/src/tla2sany/explorer/ExploreNode.java
+
0
−
4
View file @
f6b65522
...
...
@@ -28,11 +28,7 @@ public interface ExploreNode {
* semNodesTable for itself and every descendant in the semantic tree *
* by executing *
* *
<<<<<<< Updated upstream
* Integer uid = Integer.valueOf(myUID); *
=======
* Integer uid = myUID; *
>>>>>>> Stashed changes
* if (semNodesTable.get(uid) != null) return; *
* semNodesTable.put(uid, this); *
* *
...
...
This diff is collapsed.
Click to expand it.
tlatools/src/tlc2/tool/fp/DiskFPSet.java
+
1
−
20
View file @
f6b65522
...
...
@@ -55,7 +55,7 @@ import util.FileUtil;
// TODO-MAK Flush asynchronously and with multiple threads (Exploit SSD support
// for multiple concurrent readers)
@SuppressWarnings
(
"serial"
)
public
abstract
class
DiskFPSet
extends
FPSet
implements
FPSetStatistic
{
public
abstract
class
DiskFPSet
extends
FPSet
implements
FPSetStatistic
,
AutoCloseable
{
protected
final
static
Logger
LOGGER
=
Logger
.
getLogger
(
DiskFPSet
.
class
.
getName
());
...
...
@@ -278,25 +278,6 @@ public abstract class DiskFPSet extends FPSet implements FPSetStatistic {
public
abstract
long
sizeof
();
/* (non-Javadoc)
* @see java.lang.Object#finalize()
*/
/*public final void finalize() {
/* Close any backing disk files in use by this object. */
/* for (int i = 0; i < this.braf.length; i++) {
try {
this.braf[i].close();
} catch (IOException e) { /* SKIP */
/* }
}
for (int i = 0; i < this.brafPool.length; i++) {
try {
this.brafPool[i].close();
} catch (IOException e) { /* SKIP */
/* }
}
}*/
/* (non-Javadoc)
* @see tlc2.tool.fp.FPSet#addThread()
*/
...
...
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