Skip to content

Commit

Permalink
Fix code layout
Browse files Browse the repository at this point in the history
  • Loading branch information
gfinocchiaro committed Mar 29, 2024
1 parent 95b18d2 commit bfab709
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart;
package com.lightstreamer.adapters.dart;

public class Constants {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart;
package com.lightstreamer.adapters.dart;

import java.io.File;
import java.util.HashMap;
Expand All @@ -23,10 +23,10 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import com.lightstreamer.adapters.Dart.engine3D.Universe;
import com.lightstreamer.adapters.Dart.room.ChatRoom;
import com.lightstreamer.adapters.Dart.room.ChatRoomListener;
import com.lightstreamer.adapters.Dart.room.User;
import com.lightstreamer.adapters.dart.engine3D.Universe;
import com.lightstreamer.adapters.dart.room.ChatRoom;
import com.lightstreamer.adapters.dart.room.ChatRoomListener;
import com.lightstreamer.adapters.dart.room.User;
import com.lightstreamer.interfaces.data.DataProviderException;
import com.lightstreamer.interfaces.data.FailureException;
import com.lightstreamer.interfaces.data.ItemEventListener;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart;
package com.lightstreamer.adapters.dart;

import java.io.File;
import java.util.Map;
Expand All @@ -23,8 +23,8 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import com.lightstreamer.adapters.Dart.engine3D.Universe;
import com.lightstreamer.adapters.Dart.room.ChatRoom;
import com.lightstreamer.adapters.dart.engine3D.Universe;
import com.lightstreamer.adapters.dart.room.ChatRoom;
import com.lightstreamer.adapters.metadata.LiteralBasedProvider;
import com.lightstreamer.interfaces.metadata.CreditsException;
import com.lightstreamer.interfaces.metadata.ItemsException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.engine3D;
package com.lightstreamer.adapters.dart.engine3D;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.lightstreamer.adapters.Dart.engine3D;
package com.lightstreamer.adapters.dart.engine3D;

public class Constants {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.engine3D;
package com.lightstreamer.adapters.dart.engine3D;

import java.io.IOException;
import java.nio.ByteBuffer;
Expand All @@ -27,13 +27,12 @@
import org.apache.commons.math3.complex.Quaternion;

import com.croftsoft.core.lang.EnumUnknownException;

import com.lightstreamer.adapters.Dart.room.User;
import com.lightstreamer.adapters.dart.room.User;
import com.lightstreamer.interfaces.metadata.CreditsException;

public class Dart implements IBody {

private Logger logger = LogManager.getLogger(com.lightstreamer.adapters.Dart.Constants.WORLD_CAT);
private Logger logger = LogManager.getLogger(com.lightstreamer.adapters.dart.Constants.WORLD_CAT);

private String id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.engine3D;
package com.lightstreamer.adapters.dart.engine3D;

import java.awt.geom.Arc2D;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.engine3D;
package com.lightstreamer.adapters.dart.engine3D;

import org.apache.commons.math3.complex.Quaternion;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,20 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.engine3D;
package com.lightstreamer.adapters.dart.engine3D;

import java.util.HashMap;
import java.util.Map;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import sun.util.logging.internal.LoggingProviderImpl.LogManagerAccess;

import com.lightstreamer.adapters.Dart.room.User;
import com.lightstreamer.adapters.dart.room.User;
import com.lightstreamer.interfaces.metadata.CreditsException;

public class Universe {

private static Logger logger = LogManager.getLogger(com.lightstreamer.adapters.Dart.Constants.WORLD_CAT);
private static Logger logger = LogManager.getLogger(com.lightstreamer.adapters.dart.Constants.WORLD_CAT);

private Map<String,World> worlds = new HashMap<String,World>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.engine3D;
package com.lightstreamer.adapters.dart.engine3D;

import java.util.Enumeration;
import java.util.concurrent.ConcurrentHashMap;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import com.lightstreamer.adapters.Dart.room.User;
import com.lightstreamer.adapters.dart.room.User;
import com.lightstreamer.interfaces.metadata.CreditsException;

public class World extends Thread {

private Logger logger = LogManager.getLogger(com.lightstreamer.adapters.Dart.Constants.WORLD_CAT);
private Logger logger = LogManager.getLogger(com.lightstreamer.adapters.dart.Constants.WORLD_CAT);

private String id=null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.room;
package com.lightstreamer.adapters.dart.room;

import java.util.HashMap;
import java.util.Iterator;
Expand All @@ -24,7 +24,7 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import com.lightstreamer.adapters.Dart.Constants;
import com.lightstreamer.adapters.dart.Constants;


public class ChatRoom {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.room;
package com.lightstreamer.adapters.dart.room;

import java.util.Map;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.room;
package com.lightstreamer.adapters.dart.room;

import java.util.HashSet;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.lightstreamer.adapters.Dart.room;
package com.lightstreamer.adapters.dart.room;

import java.util.HashMap;
import java.util.HashSet;
Expand Down

0 comments on commit bfab709

Please sign in to comment.