Skip to content

Commit 6038770

Browse files
author
Maximilian Voß
committed
In which our hero fixed the whitespacing in the documentation
1 parent f6351d4 commit 6038770

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,26 @@ import java.util.List;
3434
import java.util.Properties;
3535

3636
public class Application {
37-
public static void main(String[] args) throws IOException {
37+
public static void main(String[] args) throws IOException {
3838

39-
TonieHandler tonieHandler = new TonieHandler("USERNAME", "PASSWORD");
40-
List<Tonie> tonies = tonieHandler.getTonies();
39+
TonieHandler tonieHandler = new TonieHandler("USERNAME", "PASSWORD");
40+
List<Tonie> tonies = tonieHandler.getTonies();
4141

42-
for (Tonie tonie : tonies) {
43-
if (StringUtils.equals(tonie.getTonieName(), "TONIES NAME")) {
44-
45-
// delete entire content from the Tonie
46-
tonieHandler.deleteTonieContent(tonie);
42+
for (Tonie tonie : tonies) {
43+
if (StringUtils.equals(tonie.getTonieName(), "TONIES NAME")) {
44+
45+
// delete entire content from the Tonie
46+
tonieHandler.deleteTonieContent(tonie);
47+
48+
// rename the Tonie
49+
tonieHandler.changeTonieName(tonie, "Tonies New Name");
4750

48-
// rename the Tonie
49-
tonieHandler.changeTonieName(tonie, "Tonies New Name");
50-
51-
// upload file to Tonie
52-
tonieHandler.uploadFile(tonie, "New Track", "PATH_TO_MP3.mp3");
53-
return;
54-
}
55-
}
56-
}
51+
// upload file to Tonie
52+
tonieHandler.uploadFile(tonie, "New Track", "PATH_TO_MP3.mp3");
53+
return;
54+
}
55+
}
56+
}
5757
}
5858

5959
```

0 commit comments

Comments
 (0)