Skip to content

Commit bcce5fe

Browse files
committed
bug fixes in Proxy objects
1 parent 5d0bf80 commit bcce5fe

File tree

2 files changed

+2
-17
lines changed

2 files changed

+2
-17
lines changed

src/FrontSubmitKernel.wl

+1-16
Original file line numberDiff line numberDiff line change
@@ -101,22 +101,7 @@ FrontInstanceGroup /: MakeBoxes[f: FrontInstanceGroup[uid_String], StandardForm]
101101
None, (* always shown content *)
102102
Null (* expandable content. Currently not supported!*)
103103
]
104-
];
105-
106-
FrontInstanceGroup /: MakeBoxes[f: FrontInstanceGroup[uid_String, __], StandardForm] := Module[{above, below},
107-
above = {
108-
{BoxForm`SummaryItem[{"State: ", "Occupied"}]}
109-
};
110-
111-
BoxForm`ArrangeSummaryBox[
112-
FrontInstanceGroup, (* head *)
113-
f, (* interpretation *)
114-
None, (* icon, use None if not needed *)
115-
(* above and below must be in a format suitable for Grid or Column *)
116-
None, (* always shown content *)
117-
Null (* expandable content. Currently not supported!*)
118-
]
119-
];
104+
];
120105

121106

122107
exec;

src/FrontendProxyKernel.wl

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Module[{buffers, private, arguments, explodeArgs, type, index, currentLength =
8787
While[System`Utilities`HashTableContainsQ[groupsStore, prehash<>ToString[currentLength] ] || currentLength == 0,
8888
currentLength++;
8989
If[buffersLength < currentLength,
90-
Print["Extend buffers"];
90+
9191
buffersLength = currentLength * 2;
9292
updateBuffers[buffersLength, {opts}];
9393
currentLength = 1;

0 commit comments

Comments
 (0)