Browse Source

Tag som non-localizable strings with NON-NLS

Change-Id: I6882c98c2785f38241a81ba5b93892aab79690a5
tags/v3.3.0.201402191814-rc1
Robin Rosenberg 10 years ago
parent
commit
4ceb25b602

+ 5
- 5
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/ArchiveFormats.java View File

@@ -70,11 +70,11 @@ public class ArchiveFormats {
* Not thread-safe.
*/
public static void registerAll() {
register("tar", new TarFormat());
register("tgz", new TgzFormat());
register("tbz2", new Tbz2Format());
register("txz", new TxzFormat());
register("zip", new ZipFormat());
register("tar", new TarFormat()); //$NON-NLS-1$
register("tgz", new TgzFormat()); //$NON-NLS-1$
register("tbz2", new Tbz2Format()); //$NON-NLS-1$
register("txz", new TxzFormat()); //$NON-NLS-1$
register("zip", new ZipFormat()); //$NON-NLS-1$
}

/**

+ 2
- 2
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java View File

@@ -62,8 +62,8 @@ import org.eclipse.jgit.lib.ObjectLoader;
* Unix TAR format (ustar + some PAX extensions).
*/
public class TarFormat implements ArchiveCommand.Format<ArchiveOutputStream> {
private static final List<String> SUFFIXES =
Collections.unmodifiableList(Arrays.asList(".tar"));
private static final List<String> SUFFIXES = Collections
.unmodifiableList(Arrays.asList(".tar")); //$NON-NLS-1$

public ArchiveOutputStream createArchiveOutputStream(OutputStream s) {
TarArchiveOutputStream out = new TarArchiveOutputStream(s, "UTF-8"); //$NON-NLS-1$

+ 2
- 3
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/Tbz2Format.java View File

@@ -58,9 +58,8 @@ import org.eclipse.jgit.lib.ObjectLoader;
* bzip2-compressed tarball (tar.bz2) format.
*/
public class Tbz2Format implements ArchiveCommand.Format<ArchiveOutputStream> {
private static final List<String> SUFFIXES =
Collections.unmodifiableList(Arrays.asList(
".tar.bz2", ".tbz", ".tbz2"));
private static final List<String> SUFFIXES = Collections
.unmodifiableList(Arrays.asList(".tar.bz2", ".tbz", ".tbz2")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$

private final ArchiveCommand.Format<ArchiveOutputStream> tarFormat = new TarFormat();


+ 2
- 3
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TgzFormat.java View File

@@ -58,9 +58,8 @@ import org.eclipse.jgit.lib.ObjectLoader;
* gzip-compressed tarball (tar.gz) format.
*/
public class TgzFormat implements ArchiveCommand.Format<ArchiveOutputStream> {
private static final List<String> SUFFIXES =
Collections.unmodifiableList(Arrays.asList(
".tar.gz", ".tgz"));
private static final List<String> SUFFIXES = Collections
.unmodifiableList(Arrays.asList(".tar.gz", ".tgz")); //$NON-NLS-1$ //$NON-NLS-2$

private final ArchiveCommand.Format<ArchiveOutputStream> tarFormat = new TarFormat();


+ 2
- 3
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TxzFormat.java View File

@@ -58,9 +58,8 @@ import org.eclipse.jgit.lib.ObjectLoader;
* Xz-compressed tar (tar.xz) format.
*/
public class TxzFormat implements ArchiveCommand.Format<ArchiveOutputStream> {
private static final List<String> SUFFIXES =
Collections.unmodifiableList(Arrays.asList(
".tar.xz", ".txz"));
private static final List<String> SUFFIXES = Collections
.unmodifiableList(Arrays.asList(".tar.xz", ".txz")); //$NON-NLS-1$ //$NON-NLS-2$

private final ArchiveCommand.Format<ArchiveOutputStream> tarFormat = new TarFormat();


+ 2
- 2
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/ZipFormat.java View File

@@ -61,8 +61,8 @@ import org.eclipse.jgit.lib.ObjectLoader;
* PKWARE's ZIP format.
*/
public class ZipFormat implements ArchiveCommand.Format<ArchiveOutputStream> {
private static final List<String> SUFFIXES =
Collections.unmodifiableList(Arrays.asList(".zip"));
private static final List<String> SUFFIXES = Collections
.unmodifiableList(Arrays.asList(".zip")); //$NON-NLS-1$

public ArchiveOutputStream createArchiveOutputStream(OutputStream s) {
return new ZipArchiveOutputStream(s);

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

@@ -191,7 +191,7 @@ public class CmdLineParser extends org.kohsuke.args4j.CmdLineParser {
@Override
public String toString() {
if (metaVar() == null)
return "ARG";
return "ARG"; //$NON-NLS-1$
try {
Field field = CLIText.class.getField(metaVar());
String ret = field.get(CLIText.get()).toString();

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

@@ -267,7 +267,7 @@ public class ArchiveCommand extends GitCommand<OutputStream> {
}

private <T extends Closeable> OutputStream writeArchive(Format<T> fmt) {
final String pfx = prefix == null ? "" : prefix;
final String pfx = prefix == null ? "" : prefix; //$NON-NLS-1$
final TreeWalk walk = new TreeWalk(repo);
try {
final T outa = fmt.createArchiveOutputStream(out);

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

@@ -134,7 +134,7 @@ public class GitDateFormatter {
Locale.US);
break;
case LOCAL:
dateTimeInstance = new SimpleDateFormat("EEE MMM dd HH:mm:ss yyyy",
dateTimeInstance = new SimpleDateFormat("EEE MMM dd HH:mm:ss yyyy", //$NON-NLS-1$
Locale.US);
break;
case RFC:

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

@@ -123,7 +123,7 @@ public class GitDateParser {
SHORT_WITH_DOTS("yyyy.MM.dd"), // //$NON-NLS-1$
SHORT_WITH_SLASH("MM/dd/yyyy"), // //$NON-NLS-1$
DEFAULT("EEE MMM dd HH:mm:ss yyyy Z"), // //$NON-NLS-1$
LOCAL("EEE MMM dd HH:mm:ss yyyy");
LOCAL("EEE MMM dd HH:mm:ss yyyy"); //$NON-NLS-1$

String formatStr;


Loading…
Cancel
Save