Skip to content

Commit

Permalink
refactor: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
squidrye committed Oct 3, 2023
1 parent b8e31f3 commit fd3af99
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,6 @@ List<PaneNode> insertAndEncode(List<PaneNode> list, int index, PaneNode node) {

List<PaneNode> ret = [...list, node];
for (int i = ret.length - 1; i > index; i--) {
Log.warn(ret.length);
Log.warn(index);
ret[i] = ret[i - 1].copyWith(
encoding: node.parent == null ? [i] : [...node.parent!.encoding, i],
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,6 @@ class TabsController extends ChangeNotifier {

if (!pm.readOnly && openPlugins.containsKey(pluginId)) {
final newPath = openPlugins[pluginId]!.first;
Log.warn(
"New path is $newPath navigate to here in tree, sync and remove readOnly",
);
_getPluginOnPath(
newPath,
getIt<PanesCubit>().state.root,
Expand Down

0 comments on commit fd3af99

Please sign in to comment.