Browse Source

Add missing newlines at ends of Java files

Change-Id: Iead36f53d57ead0eb3edd3f9efb63b6630c9c20c
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
tags/v4.9.0.201710071750-r
David Pursehouse 6 years ago
parent
commit
4940ea14b7
45 changed files with 45 additions and 45 deletions
  1. 1
    1
      org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/glue/ServletBinder.java
  2. 1
    1
      org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/MockServletConfig.java
  3. 1
    1
      org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/Repeat.java
  4. 1
    1
      org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java
  5. 1
    1
      org.eclipse.jgit.lfs.server.test/tst/org/eclipse/jgit/lfs/server/fs/LfsServerTest.java
  6. 1
    1
      org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/TransferHandler.java
  7. 1
    1
      org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/AtomicObjectOutputStream.java
  8. 1
    1
      org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/ReflogTest.java
  9. 1
    1
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Config.java
  10. 1
    1
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Daemon.java
  11. 1
    1
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/opt/UntrackedFilesHandler.java
  12. 1
    1
      org.eclipse.jgit.test/tst/org/eclipse/jgit/api/LogCommandTest.java
  13. 1
    1
      org.eclipse.jgit.test/tst/org/eclipse/jgit/api/PullCommandTest.java
  14. 1
    1
      org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/ReflogResolveTest.java
  15. 1
    1
      org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/RevWalkMergeBaseTest.java
  16. 1
    1
      org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/SkipRevFilterTest.java
  17. 1
    1
      org.eclipse.jgit.test/tst/org/eclipse/jgit/submodule/SubmoduleAddTest.java
  18. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/api/ReflogCommand.java
  19. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/api/SubmoduleSyncCommand.java
  20. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/attributes/Attribute.java
  21. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/attributes/AttributesRule.java
  22. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffEntry.java
  23. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/errors/TooLargeObjectInPackException.java
  24. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/errors/TranslationBundleLoadingException.java
  25. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/hooks/GitHook.java
  26. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/CheckoutEntryImpl.java
  27. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/InfoAttributesNode.java
  28. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInputStream.java
  29. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ReflogEntryImpl.java
  30. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ReflogWriter.java
  31. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java
  32. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/DeltaIndexScanner.java
  33. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/BaseRepositoryBuilder.java
  34. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapObject.java
  35. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java
  36. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogEntry.java
  37. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogReader.java
  38. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatterPass.java
  39. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/nls/TranslationBundle.java
  40. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/filter/SkipRevFilter.java
  41. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/JschSession.java
  42. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/NetRC.java
  43. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/RemoteSession.java
  44. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/InterIndexDiffFilter.java
  45. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/util/RelativeDateFormatter.java

+ 1
- 1
org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/glue/ServletBinder.java View File

@@ -60,4 +60,4 @@ public interface ServletBinder {
* the servlet to execute on this path.
*/
public void with(HttpServlet servlet);
}
}

+ 1
- 1
org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/MockServletConfig.java View File

@@ -88,4 +88,4 @@ public class MockServletConfig implements ServletConfig {
public ServletContext getServletContext() {
return null;
}
}
}

+ 1
- 1
org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/Repeat.java View File

@@ -50,4 +50,4 @@ import java.lang.annotation.Target;
@Target({ java.lang.annotation.ElementType.METHOD })
public @interface Repeat {
public abstract int n();
}
}

+ 1
- 1
org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java View File

@@ -128,4 +128,4 @@ public class RepeatRule implements TestRule {
}
return result;
}
}
}

+ 1
- 1
org.eclipse.jgit.lfs.server.test/tst/org/eclipse/jgit/lfs/server/fs/LfsServerTest.java View File

@@ -265,4 +265,4 @@ public abstract class LfsServerTest {
}
return Files.size(f);
}
}
}

+ 1
- 1
org.eclipse.jgit.lfs.server/src/org/eclipse/jgit/lfs/server/TransferHandler.java View File

@@ -164,4 +164,4 @@ abstract class TransferHandler {
}

abstract Response.Body process() throws IOException;
}
}

+ 1
- 1
org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/internal/AtomicObjectOutputStream.java View File

@@ -146,4 +146,4 @@ public class AtomicObjectOutputStream extends OutputStream {
locked.unlock();
aborted = true;
}
}
}

+ 1
- 1
org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/ReflogTest.java View File

@@ -80,4 +80,4 @@ public class ReflogTest extends CLIRepositoryTestCase {
"" }, execute("git reflog refs/heads/side"));
}
}
}
}

+ 1
- 1
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Config.java View File

@@ -122,4 +122,4 @@ class Config extends TextBuiltin {
}
}
}
}
}

+ 1
- 1
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Daemon.java View File

@@ -204,4 +204,4 @@ class Daemon extends TextBuiltin {
}
});
}
}
}

+ 1
- 1
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/opt/UntrackedFilesHandler.java View File

@@ -111,4 +111,4 @@ public class UntrackedFilesHandler extends StringOptionHandler {
}
}

}
}

+ 1
- 1
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/LogCommandTest.java View File

@@ -289,4 +289,4 @@ public class LogCommandTest extends RepositoryTestCase {
.setMessage("merge s0 with m1").call();
}

}
}

+ 1
- 1
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/PullCommandTest.java View File

@@ -620,4 +620,4 @@ public class PullCommandTest extends RepositoryTestCase {
fis.close();
}
}
}
}

+ 1
- 1
org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/ReflogResolveTest.java View File

@@ -179,4 +179,4 @@ public class ReflogResolveTest extends RepositoryTestCase {
}
}
}
}
}

+ 1
- 1
org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/RevWalkMergeBaseTest.java View File

@@ -171,4 +171,4 @@ public class RevWalkMergeBaseTest extends RevWalkTestCase {
assertNull(rw.next());
}

}
}

+ 1
- 1
org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/SkipRevFilterTest.java View File

@@ -81,4 +81,4 @@ public class SkipRevFilterTest extends RevWalkTestCase {
public void testSkipRevFilterNegative() throws Exception {
SkipRevFilter.create(-1);
}
}
}

+ 1
- 1
org.eclipse.jgit.test/tst/org/eclipse/jgit/submodule/SubmoduleAddTest.java View File

@@ -269,4 +269,4 @@ public class SubmoduleAddTest extends RepositoryTestCase {
ConfigConstants.CONFIG_KEY_URL));
}
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/api/ReflogCommand.java View File

@@ -109,4 +109,4 @@ public class ReflogCommand extends GitCommand<Collection<ReflogEntry>> {
}
}

}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/api/SubmoduleSyncCommand.java View File

@@ -162,4 +162,4 @@ public class SubmoduleSyncCommand extends GitCommand<Map<String, String>> {
throw new JGitInternalException(e.getMessage(), e);
}
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/attributes/Attribute.java View File

@@ -193,4 +193,4 @@ public final class Attribute {
return key + "=" + value; //$NON-NLS-1$
}
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/attributes/AttributesRule.java View File

@@ -225,4 +225,4 @@ public class AttributesRule {
return sb.toString();

}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffEntry.java View File

@@ -525,4 +525,4 @@ public class DiffEntry {
buf.append("]");
return buf.toString();
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/errors/TooLargeObjectInPackException.java View File

@@ -92,4 +92,4 @@ public class TooLargeObjectInPackException extends TransportException {
public TooLargeObjectInPackException(URIish uri, String s) {
super(uri.setPass(null) + ": " + s); //$NON-NLS-1$
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/errors/TranslationBundleLoadingException.java View File

@@ -69,4 +69,4 @@ public class TranslationBundleLoadingException extends TranslationBundleExceptio
+ bundleClass.getName() + ", " + locale.toString() + "]", //$NON-NLS-1$ //$NON-NLS-2$
bundleClass, locale, cause);
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/hooks/GitHook.java View File

@@ -167,4 +167,4 @@ abstract class GitHook<T> implements Callable<T> {
}
}

}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/CheckoutEntryImpl.java View File

@@ -74,4 +74,4 @@ public class CheckoutEntryImpl implements CheckoutEntry {
public String getToBranch() {
return to;
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/InfoAttributesNode.java View File

@@ -78,4 +78,4 @@ public class InfoAttributesNode extends AttributesNode {
return r.getRules().isEmpty() ? null : r;
}

}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackInputStream.java View File

@@ -82,4 +82,4 @@ class PackInputStream extends InputStream {
public void close() {
wc.close();
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ReflogEntryImpl.java View File

@@ -139,4 +139,4 @@ public class ReflogEntryImpl implements Serializable, ReflogEntry {
else
return null;
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/ReflogWriter.java View File

@@ -287,4 +287,4 @@ public class ReflogWriter {
|| refName.startsWith(R_REMOTES) //
|| refName.equals(R_STASH);
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java View File

@@ -136,4 +136,4 @@ class SimpleDataOutput implements DataOutput {
public void writeUTF(String s) throws IOException {
throw new UnsupportedOperationException();
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/DeltaIndexScanner.java View File

@@ -127,4 +127,4 @@ class DeltaIndexScanner {
sz <<= 1;
return sz;
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/BaseRepositoryBuilder.java View File

@@ -738,4 +738,4 @@ public class BaseRepositoryBuilder<B extends BaseRepositoryBuilder, R extends Re
protected final B self() {
return (B) this;
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapObject.java View File

@@ -62,4 +62,4 @@ public abstract class BitmapObject {
* @return unique hash of this object.
*/
public abstract ObjectId getObjectId();
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java View File

@@ -17,4 +17,4 @@ public interface CheckoutEntry {
*/
public abstract String getToBranch();

}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogEntry.java View File

@@ -75,4 +75,4 @@ public interface ReflogEntry {
*/
public abstract CheckoutEntry parseCheckout();

}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogReader.java View File

@@ -86,4 +86,4 @@ public interface ReflogReader {
public abstract List<ReflogEntry> getReverseEntries(int max)
throws IOException;

}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatterPass.java View File

@@ -143,4 +143,4 @@ class MergeFormatterPass {
if (out.isBeginln())
out.write('\n');
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/nls/TranslationBundle.java View File

@@ -184,4 +184,4 @@ public abstract class TranslationBundle {
}
}
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/filter/SkipRevFilter.java View File

@@ -91,4 +91,4 @@ public class SkipRevFilter extends RevFilter {
public RevFilter clone() {
return new SkipRevFilter(skip);
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/JschSession.java View File

@@ -229,4 +229,4 @@ public class JschSession implements RemoteSession {
return exitValue();
}
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/NetRC.java View File

@@ -317,4 +317,4 @@ public class NetRC {
}
}
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/RemoteSession.java View File

@@ -83,4 +83,4 @@ public interface RemoteSession {
* Disconnect the remote session
*/
public void disconnect();
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/filter/InterIndexDiffFilter.java View File

@@ -102,4 +102,4 @@ public final class InterIndexDiffFilter extends TreeFilter {
public String toString() {
return "INTERINDEX_DIFF"; //$NON-NLS-1$
}
}
}

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/util/RelativeDateFormatter.java View File

@@ -140,4 +140,4 @@ public class RelativeDateFormatter {
long rounded = (n + unit / 2) / unit;
return rounded;
}
}
}

Loading…
Cancel
Save