summaryrefslogtreecommitdiff
path: root/fml/lib/IO/Adapter/File.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-07-23 15:58:59 +0000
committerfukachan <fukachan>2004-07-23 15:58:59 +0000
commita12f82dba895a9ecc7d624af8e6594a0c60271c2 (patch)
tree709178fe95ceb94575b23abd6cb4fe82fe944881 /fml/lib/IO/Adapter/File.pm
parent490d4269214ec44227147cf6a85b9ed6458688aa (diff)
downloadfml8-a12f82dba895a9ecc7d624af8e6594a0c60271c2.tar.gz
fml8-a12f82dba895a9ecc7d624af8e6594a0c60271c2.tar.bz2
fml8-a12f82dba895a9ecc7d624af8e6594a0c60271c2.zip
white space cosmetics
Diffstat (limited to 'fml/lib/IO/Adapter/File.pm')
-rw-r--r--fml/lib/IO/Adapter/File.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fml/lib/IO/Adapter/File.pm b/fml/lib/IO/Adapter/File.pm
index da2bf7c1..2fdf40f7 100644
--- a/fml/lib/IO/Adapter/File.pm
+++ b/fml/lib/IO/Adapter/File.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: File.pm,v 1.57 2004/06/27 05:59:10 fukachan Exp $
+# $FML: File.pm,v 1.58 2004/07/11 15:25:53 fukachan Exp $
#
package IO::Adapter::File;
@@ -695,7 +695,7 @@ sub sequence_increment
{
use IO::Adapter::AtomicFile;
my ($rh, $wh) = IO::Adapter::AtomicFile->rw_open($file);
- if (defined $rh) {
+ if (defined $rh) {
my $new_id = $self->_read_one_word($rh);
unless ($new_id == $id) {
$self->error_set("fail to save id");
@@ -747,10 +747,10 @@ sub sequence_replace
{
use IO::Adapter::AtomicFile;
my ($rh, $wh) = IO::Adapter::AtomicFile->rw_open($file);
- if (defined $rh) {
+ if (defined $rh) {
my $id = $self->_read_one_word($rh);
unless ($new_id == $id) {
- $self->error_set("fail to save id");
+ $self->error_set("fail to save id");
}
$rh->close();
}