Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Sawicki2012-04-05 20:48:46 +0000
committerKevin Sawicki2012-04-05 20:48:46 +0000
commit3427f0a270528fb01f1d79d898b615b1c71d1c98 (patch)
tree1905efa629c75c06fe092e5955630c1f1088ad9d /org.eclipse.egit.github.core
parent9d5d851d6bdffeda3f837ed6955750cd150fe4c7 (diff)
downloadegit-github-3427f0a270528fb01f1d79d898b615b1c71d1c98.tar.gz
egit-github-3427f0a270528fb01f1d79d898b615b1c71d1c98.tar.xz
egit-github-3427f0a270528fb01f1d79d898b615b1c71d1c98.zip
Add missing space before '{' and format class header comment
Diffstat (limited to 'org.eclipse.egit.github.core')
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/event/EventPayload.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/event/EventPayload.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/event/EventPayload.java
index f68ae6f8..86ef2972 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/event/EventPayload.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/event/EventPayload.java
@@ -14,11 +14,11 @@ import java.io.Serializable;
/**
* Parent class for event payloads
- * @see <a href="http://developer.github.com/v3/events/types">GitHub Event
- * types API documentation</a>
+ *
+ * @see <a href="http://developer.github.com/v3/events/types">GitHub Event types
+ * API documentation</a>
*/
-public class EventPayload implements Serializable{
+public class EventPayload implements Serializable {
private static final long serialVersionUID = 1022083387039340606L;
-
}

Back to the top