Remove unnecessary imports

Change-Id: Iaa86c0d4d893a1eb6f114275c35ff830fb2b7fff
This commit is contained in:
alex.ryazantsev
2013-11-03 12:36:39 +04:00
parent 8f91bb36b2
commit 59ae7d743c
3 changed files with 0 additions and 6 deletions

View File

@@ -14,8 +14,6 @@
package org.eclipse.jgit.internal.storage.file;
import org.eclipse.jgit.internal.storage.file.WindowCache;
// Hack to obtain visibility to package level methods only.
// These aren't yet part of the public JGit API.

View File

@@ -31,7 +31,6 @@ import org.eclipse.jgit.revwalk.RevWalk;
import org.eclipse.jgit.treewalk.TreeWalk;
import java.io.IOException;
import java.nio.charset.CharacterCodingException;
/** State supporting processing of a single {@link Patch} instance. */
public class PatchFile {
@@ -89,7 +88,6 @@ public class PatchFile {
* @throws CorruptEntityException the patch cannot be read.
* @throws IOException the patch or complete file content cannot be read.
* @throws NoSuchEntityException
* @throws CharacterCodingException the file is not a known character set.
*/
public String getLine(final int file, final int line)
throws CorruptEntityException, IOException, NoSuchEntityException {

View File

@@ -14,8 +14,6 @@
package com.google.gerrit.server.ioutil;
import com.google.gerrit.server.ioutil.ColumnFormatter;
import junit.framework.TestCase;
import java.io.PrintWriter;