projects
/
sonitus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
d07ec83
)
Add some missing javadoc comments.
author
David ‘Bombe’ Roden
<bombe@pterodactylus.net>
Mon, 27 May 2013 07:43:01 +0000
(09:43 +0200)
committer
David ‘Bombe’ Roden
<bombe@pterodactylus.net>
Mon, 27 May 2013 20:54:39 +0000
(22:54 +0200)
src/main/java/net/pterodactylus/sonitus/data/sink/FileSink.java
patch
|
blob
|
history
src/main/java/net/pterodactylus/sonitus/data/sink/Icecast2Sink.java
patch
|
blob
|
history
src/main/java/net/pterodactylus/sonitus/data/source/MultiSource.java
patch
|
blob
|
history
diff --git
a/src/main/java/net/pterodactylus/sonitus/data/sink/FileSink.java
b/src/main/java/net/pterodactylus/sonitus/data/sink/FileSink.java
index
9738c50
..
48476b3
100644
(file)
--- a/
src/main/java/net/pterodactylus/sonitus/data/sink/FileSink.java
+++ b/
src/main/java/net/pterodactylus/sonitus/data/sink/FileSink.java
@@
-47,6
+47,7
@@
public class FileSink implements Sink {
/** The path of the file to write to. */
private final String path;
/** The path of the file to write to. */
private final String path;
+ /** The output stream writing to the file. */
private FileOutputStream fileOutputStream;
/** The current metadata. */
private FileOutputStream fileOutputStream;
/** The current metadata. */
diff --git
a/src/main/java/net/pterodactylus/sonitus/data/sink/Icecast2Sink.java
b/src/main/java/net/pterodactylus/sonitus/data/sink/Icecast2Sink.java
index
b924cc5
..
ce55669
100644
(file)
--- a/
src/main/java/net/pterodactylus/sonitus/data/sink/Icecast2Sink.java
+++ b/
src/main/java/net/pterodactylus/sonitus/data/sink/Icecast2Sink.java
@@
-81,6
+81,7
@@
public class Icecast2Sink implements Sink {
/** Whether to publish the server. */
private final boolean publishServer;
/** Whether to publish the server. */
private final boolean publishServer;
+ /** The output stream to the server. */
private OutputStream socketOutputStream;
/** The current metadata. */
private OutputStream socketOutputStream;
/** The current metadata. */
diff --git
a/src/main/java/net/pterodactylus/sonitus/data/source/MultiSource.java
b/src/main/java/net/pterodactylus/sonitus/data/source/MultiSource.java
index
81f4f7c
..
13cf030
100644
(file)
--- a/
src/main/java/net/pterodactylus/sonitus/data/source/MultiSource.java
+++ b/
src/main/java/net/pterodactylus/sonitus/data/source/MultiSource.java
@@
-56,6
+56,12
@@
public class MultiSource implements Source {
/** Whether the source was changed. */
private boolean sourceChanged;
/** Whether the source was changed. */
private boolean sourceChanged;
+ /**
+ * Creates a new multi source.
+ *
+ * @param eventBus
+ * The event bus
+ */
@Inject
public MultiSource(EventBus eventBus) {
this.eventBus = eventBus;
@Inject
public MultiSource(EventBus eventBus) {
this.eventBus = eventBus;