Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove obsolete key in demo app #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
TCSample.iml
target/
.idea/
\.vscode/
/bin/
/bin/
6 changes: 5 additions & 1 deletion src/main/java/totalcross/sample/TCSampleApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
public class TCSampleApplication {
public static void main(String[] args) {
TotalCrossApplication.run(
TCSample.class, "/r", "<PLACE YOUR KEY>", "/scr", "iphone");
TCSample.class,"/scr", "iphone"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file beforehand was in a code-style of 2-space indentation, but the new-lines here uses 1-tab indentation.

I think that the project should have a single and coherent code-style

);
// Note: for a pre-6.1 launcher, the command line should be like:
// TCSample.class, "/r", "<PLACE YOUR KEY>", "/scr", "iphone"

}
}