Skip to content

Commit

Permalink
Simple refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Luc Paour committed Jun 27, 2003
1 parent 89f5e5d commit 75dd332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions com/gallery/GalleryRemote/GalleryComm2.java
Expand Up @@ -630,7 +630,7 @@ private void list20() throws IOException, ModuleException {
a.setCanDeleteFrom( isTrue( p.getProperty( permsDelItemKey ) ) );
a.setCanDeleteThisAlbum( isTrue( p.getProperty( permsDelAlbKey ) ) );
a.setCanCreateSubAlbum( isTrue( p.getProperty( permsCreateSubKey ) ) );
a.setExtraFields( p.getProperty( infoExtraFieldsKey ) );
a.setExtraFieldsString( p.getProperty( infoExtraFieldsKey ) );

a.setName( p.getProperty( nameKey ) );
a.setTitle( p.getProperty( titleKey ) );
Expand Down Expand Up @@ -710,7 +710,7 @@ private void list22() throws IOException, ModuleException {
String title = p.getProperty( titleKey );
a.setName( name );
a.setTitle( title );
a.setExtraFields( p.getProperty(infoExtraFieldKey));
a.setExtraFieldsString( p.getProperty(infoExtraFieldKey));

a.setGallery( g );
mAlbumList.add( a );
Expand Down

0 comments on commit 75dd332

Please sign in to comment.