You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2006/05/01 02:04:36 UTC

svn commit: r398465 - /incubator/roller/trunk/src/org/roller/presentation/webservices/atomprotocol/RollerAtomHandler.java

Author: snoopdave
Date: Sun Apr 30 17:04:34 2006
New Revision: 398465

URL: http://svn.apache.org/viewcvs?rev=398465&view=rev
Log:
Fixed compile problem

Modified:
    incubator/roller/trunk/src/org/roller/presentation/webservices/atomprotocol/RollerAtomHandler.java

Modified: incubator/roller/trunk/src/org/roller/presentation/webservices/atomprotocol/RollerAtomHandler.java
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/src/org/roller/presentation/webservices/atomprotocol/RollerAtomHandler.java?rev=398465&r1=398464&r2=398465&view=diff
==============================================================================
--- incubator/roller/trunk/src/org/roller/presentation/webservices/atomprotocol/RollerAtomHandler.java (original)
+++ incubator/roller/trunk/src/org/roller/presentation/webservices/atomprotocol/RollerAtomHandler.java Sun Apr 30 17:04:34 2006
@@ -737,7 +737,7 @@
         List modules = new ArrayList();
         PubControlModule pubControl = new PubControlModuleImpl();
         pubControl.setDraft(
-            new Boolean(!WeblogEntryData.PUBLISHED.equals(entry.getStatus())));
+            !WeblogEntryData.PUBLISHED.equals(entry.getStatus()));
         modules.add(pubControl);
         atomEntry.setModules(modules);