Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
1f5abd5f
Commit
1f5abd5f
authored
Sep 06, 2019
by
Ellen Spertus
Committed by
Evan W. Patton
Sep 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove debug logging
parent
7452a36f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
appinventor/appengine/src/com/google/appinventor/client/editor/simple/components/MockForm.java
...appinventor/client/editor/simple/components/MockForm.java
+0
-4
appinventor/appengine/src/com/google/appinventor/client/explorer/project/Project.java
...m/google/appinventor/client/explorer/project/Project.java
+0
-2
No files found.
appinventor/appengine/src/com/google/appinventor/client/editor/simple/components/MockForm.java
View file @
1f5abd5f
...
...
@@ -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."
);
}
/*
...
...
appinventor/appengine/src/com/google/appinventor/client/explorer/project/Project.java
View file @
1f5abd5f
...
...
@@ -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
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment