Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jan 5, 2011
1 parent 409e69c commit f750e1a
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 22 deletions.
2 changes: 0 additions & 2 deletions source/ch/cyberduck/core/azure/AzurePath.java
Expand Up @@ -431,8 +431,6 @@ protected void download(BandwidthThrottle throttle, StreamListener listener, boo
if(check) {
this.getSession().check();
}
this.getSession().message(MessageFormat.format(Locale.localizedString("Downloading {0}", "Status"),
this.getName()));

AzureSession.AzureContainer container = this.getSession().getContainer(this.getContainerName());
in = container.getBlob(this.getKey());
Expand Down
6 changes: 0 additions & 6 deletions source/ch/cyberduck/core/cf/CFPath.java
Expand Up @@ -289,9 +289,6 @@ protected void download(final BandwidthThrottle throttle, final StreamListener l
if(check) {
this.getSession().check();
}
this.getSession().message(MessageFormat.format(Locale.localizedString("Downloading {0}", "Status"),
this.getName()));

in = this.getSession().getClient().getObjectAsStream(this.getContainerName(), this.getKey());
if(null == in) {
throw new IOException("Unable opening data stream");
Expand Down Expand Up @@ -330,9 +327,6 @@ protected void upload(final BandwidthThrottle throttle, final StreamListener lis
this.getName()));
md5sum = this.getLocal().attributes().getChecksum();
}
this.getSession().message(MessageFormat.format(Locale.localizedString("Uploading {0}", "Status"),
this.getName()));

final InputStream in;
MessageDigest digest = null;
if(!Preferences.instance().getBoolean("cf.upload.metadata.md5")) {
Expand Down
3 changes: 0 additions & 3 deletions source/ch/cyberduck/core/dav/DAVPath.java
Expand Up @@ -333,9 +333,6 @@ protected void upload(final BandwidthThrottle throttle, final StreamListener lis
if(check) {
this.getSession().check();
}
this.getSession().message(MessageFormat.format(Locale.localizedString("Uploading {0}", "Status"),
this.getName()));

final InputStream in = this.getLocal().getInputStream();
try {
final Status status = this.status();
Expand Down
3 changes: 0 additions & 3 deletions source/ch/cyberduck/core/dropbox/DropboxPath.java
Expand Up @@ -184,9 +184,6 @@ protected void download(BandwidthThrottle throttle, StreamListener listener, boo
if(check) {
this.getSession().check();
}
this.getSession().message(MessageFormat.format(Locale.localizedString("Downloading {0}", "Status"),
this.getName()));

in = this.getSession().getClient().get(this.getAbsolute(), this.attributes().getChecksum());
out = this.getLocal().getOutputStream(this.status().isResume());

Expand Down
8 changes: 0 additions & 8 deletions source/ch/cyberduck/core/gdocs/GDPath.java
Expand Up @@ -418,9 +418,6 @@ protected void download(BandwidthThrottle throttle, StreamListener listener, boo
if(check) {
this.getSession().check();
}
this.getSession().message(MessageFormat.format(Locale.localizedString("Downloading {0}", "Status"),
this.getName()));

MediaContent mc = new MediaContent();
StringBuilder uri = new StringBuilder(this.getExportUri());
final String type = this.getDocumentType();
Expand Down Expand Up @@ -491,9 +488,6 @@ protected void upload(BandwidthThrottle throttle, StreamListener listener, boole
if(check) {
this.getSession().check();
}
this.getSession().message(MessageFormat.format(Locale.localizedString("Uploading {0}", "Status"),
this.getName()));

InputStream in = null;
OutputStream out = null;
try {
Expand All @@ -519,8 +513,6 @@ protected void upload(BandwidthThrottle throttle, StreamListener listener, boole
}
document.setContent(content);

this.getSession().message(MessageFormat.format(Locale.localizedString("Uploading {0}", "Status"),
this.getName()));
status().setResume(false);

String feed;
Expand Down

0 comments on commit f750e1a

Please sign in to comment.