Author: solomax
Date: Tue Jun 5 09:26:07 2012
New Revision: 1346311
URL: http://svn.apache.org/viewvc?rev=1346311&view=rev
Log:
minor code cleanup
Modified:
incubator/openmeetings/trunk/singlewebapp/src/org/openmeetings/app/persistence/beans/basic/RemoteSessionObject.java
Modified:
incubator/openmeetings/trunk/singlewebapp/src/org/openmeetings/app/persistence/beans/basic/RemoteSessionObject.java
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/src/org/openmeetings/app/persistence/beans/basic/RemoteSessionObject.java?rev=1346311&r1=1346310&r2=1346311&view=diff
==============================================================================
---
incubator/openmeetings/trunk/singlewebapp/src/org/openmeetings/app/persistence/beans/basic/RemoteSessionObject.java
(original)
+++
incubator/openmeetings/trunk/singlewebapp/src/org/openmeetings/app/persistence/beans/basic/RemoteSessionObject.java
Tue Jun 5 09:26:07 2012
@@ -38,14 +38,7 @@ public class RemoteSessionObject {
public RemoteSessionObject(String username, String firstname, String
lastname,
String pictureUrl, String email) {
- super();
- this.username = username;
- this.firstname = firstname;
- this.lastname = lastname;
- this.pictureUrl = pictureUrl;
- this.email = email;
- this.externalUserId = "0";
- this.externalUserType = "";
+ this(username, firstname, lastname, pictureUrl, email, "0", "");
}