Skip to content

Commit

Permalink
Hide tempt file when created
Browse files Browse the repository at this point in the history
solves bug 3294
  • Loading branch information
goglepox committed Aug 28, 2012
1 parent 584222e commit 370d6bd
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -558,9 +558,8 @@ public void partialReturn( Void object ) {
loopProgress.newChild( 5 ) );
}else {
target.create( convertToByteArrayIs( writer ),
false,
IResource.FORCE | IResource.HIDDEN,
loopProgress.newChild( 4 ) );
target.setHidden( true );
target.getParent().refreshLocal( IResource.DEPTH_INFINITE ,
loopProgress.newChild( 1));
}
Expand Down Expand Up @@ -600,7 +599,7 @@ public void partialReturn( Void object ) {
} catch ( CoreException e1 ) {
logger.warn( "Could not rename original" );
throw new BioclipseException( "Failed to create new index: "
+ e1.getMessage());
+ e1.getMessage(),e1);
}
progress.done();
}
Expand Down

0 comments on commit 370d6bd

Please sign in to comment.