Noticed that while analyzing bug 402131.
Change-Id: If3fd40b64d5088c4579946271a67346cbd9e6556
pushNotPermitted=push not permitted
rawLogMessageDoesNotParseAsLogEntry=Raw log message does not parse as log entry
readingObjectsFromLocalRepositoryFailed=reading objects from local repository failed: {0}
-readTimedOut=Read timed out
+readTimedOut=Read timed out after {0} ms
receivePackObjectTooLarge1=Object too large, rejecting the pack. Max object size limit is {0} bytes.
receivePackObjectTooLarge2=Object too large ({0} bytes), rejecting the pack. Max object size limit is {1} bytes.
receivingObjects=Receiving objects
windowSizeMustBeLesserThanLimit=Window size must be < limit
windowSizeMustBePowerOf2=Window size must be power of 2
writerAlreadyInitialized=Writer already initialized
-writeTimedOut=Write timed out
+writeTimedOut=Write timed out after {0} ms
writingNotPermitted=Writing not permitted
writingNotSupported=Writing {0} not supported.
writingObjects=Writing objects
/*
- * Copyright (C) 2009, Google Inc.
+ * Copyright (C) 2009, 2013 Google Inc.
* and other copyright owners as documented in the project's IP log.
*
* This program and the accompanying materials are made available
myTimer.end();
}
- private static InterruptedIOException readTimedOut() {
- return new InterruptedIOException(JGitText.get().readTimedOut);
+ private InterruptedIOException readTimedOut() {
+ return new InterruptedIOException(MessageFormat.format(
+ JGitText.get().readTimedOut, Integer.valueOf(timeout)));
}
}
/*
- * Copyright (C) 2009, Google Inc.
+ * Copyright (C) 2009, 2013 Google Inc.
* and other copyright owners as documented in the project's IP log.
*
* This program and the accompanying materials are made available
myTimer.end();
}
- private static InterruptedIOException writeTimedOut() {
- return new InterruptedIOException(JGitText.get().writeTimedOut);
+ private InterruptedIOException writeTimedOut() {
+ return new InterruptedIOException(MessageFormat.format(
+ JGitText.get().writeTimedOut, Integer.valueOf(timeout)));
}
}