Commit 1f5abd5f authored by Ellen Spertus's avatar Ellen Spertus Committed by Evan W. Patton

Remove debug logging

parent 7452a36f
......@@ -6,7 +6,6 @@
package com.google.appinventor.client.editor.simple.components;
import com.google.appinventor.client.Ode;
import static com.google.appinventor.client.Ode.MESSAGES;
import java.util.HashMap;
......@@ -734,7 +733,6 @@ public final class MockForm extends MockContainer {
private Timer refreshTimer = null;
public final void refresh() {
Ode.CLog("MockForm: refresh() called.");
if (refreshTimer != null) return;
refreshTimer = new Timer() {
@Override
......@@ -755,7 +753,6 @@ public final class MockForm extends MockContainer {
*/
public final void doRefresh() {
Ode.CLog("MockForm: doRefresh() called");
Map<MockComponent, LayoutInfo> layoutInfoMap = new HashMap<MockComponent, LayoutInfo>();
collectLayoutInfos(layoutInfoMap, this);
......@@ -769,7 +766,6 @@ public final class MockForm extends MockContainer {
layoutInfo.cleanUp();
}
layoutInfoMap.clear();
Ode.CLog("MockForm: doRefresh() done.");
}
/*
......
......@@ -53,7 +53,6 @@ public final class Project {
public void loadProjectNodes() {
if (projectRoot == null && !loadingInProgress) {
loadingInProgress = true;
Ode.CLog("Project.loadProjectNodes(): loadingInProgress = true");
if (settings == null) {
settings = new ProjectSettings(Project.this);
......@@ -69,7 +68,6 @@ public final class Project {
public void onSuccess(ProjectRootNode result) {
projectRoot = result;
Ode.CLog("Project.loadProjectNodes(): loadingInProgress = false");
loadingInProgress = false;
fireProjectLoaded();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment