Skip to content

Commit e86b920

Browse files
authored
Remove package comments (#824)
1 parent 6916f25 commit e86b920

File tree

97 files changed

+100
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+100
-100
lines changed

Parse/src/main/java/com/parse/AbstractQueryController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* {@code AbstractParseQueryController} is an abstract implementation of
1818
* {@link ParseQueryController}, which implements {@link ParseQueryController#getFirstAsync}.
1919
*/
20-
/** package */ abstract class AbstractQueryController implements ParseQueryController {
20+
abstract class AbstractQueryController implements ParseQueryController {
2121

2222
@Override
2323
public <T extends ParseObject> Task<T> getFirstAsync(ParseQuery.State<T> state, ParseUser user,

Parse/src/main/java/com/parse/CacheQueryController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import bolts.Continuation;
1818
import bolts.Task;
1919

20-
/** package */ class CacheQueryController extends AbstractQueryController {
20+
class CacheQueryController extends AbstractQueryController {
2121

2222
private final NetworkQueryController networkController;
2323

Parse/src/main/java/com/parse/CachedCurrentInstallationController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import bolts.Continuation;
1212
import bolts.Task;
1313

14-
/** package */ class CachedCurrentInstallationController
14+
class CachedCurrentInstallationController
1515
implements ParseCurrentInstallationController {
1616

1717
/* package */ static final String TAG = "com.parse.CachedCurrentInstallationController";

Parse/src/main/java/com/parse/CachedCurrentUserController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import bolts.Continuation;
1515
import bolts.Task;
1616

17-
/** package */ class CachedCurrentUserController implements ParseCurrentUserController {
17+
class CachedCurrentUserController implements ParseCurrentUserController {
1818

1919
/**
2020
* Lock used to synchronize current user modifications and access.

Parse/src/main/java/com/parse/ConnectivityNotifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import java.util.List;
2222
import java.util.Set;
2323

24-
/** package */ class ConnectivityNotifier extends BroadcastReceiver {
24+
class ConnectivityNotifier extends BroadcastReceiver {
2525
private static final String TAG = "com.parse.ConnectivityNotifier";
2626
public interface ConnectivityListener {
2727
void networkConnectivityStatusChanged(Context context, Intent intent);

Parse/src/main/java/com/parse/EventuallyPin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* The user that instantiated the operation
3737
*/
3838
@ParseClassName("_EventuallyPin")
39-
/** package */ class EventuallyPin extends ParseObject {
39+
class EventuallyPin extends ParseObject {
4040

4141
public static final String PIN_NAME = "_eventuallyPin";
4242

Parse/src/main/java/com/parse/FileObjectStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import bolts.Task;
1919

20-
/** package */ class FileObjectStore<T extends ParseObject> implements ParseObjectStore<T> {
20+
class FileObjectStore<T extends ParseObject> implements ParseObjectStore<T> {
2121

2222
private static ParseObjectSubclassingController getSubclassingController() {
2323
return ParseCorePlugins.getInstance().getSubclassingController();

Parse/src/main/java/com/parse/KnownParseObjectDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* A subclass of <code>ParseDecoder</code> which can keep <code>ParseObject</code> that
1515
* has been fetched instead of creating a new instance.
1616
*/
17-
/** package */ class KnownParseObjectDecoder extends ParseDecoder {
17+
class KnownParseObjectDecoder extends ParseDecoder {
1818
private Map<String, ParseObject> fetchedObjects;
1919

2020
public KnownParseObjectDecoder(Map<String, ParseObject> fetchedObjects) {

Parse/src/main/java/com/parse/Lists.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @author Louis Wasserman
3232
* @since 2.0
3333
*/
34-
/** package */ class Lists {
34+
class Lists {
3535

3636
/**
3737
* Returns consecutive sublists of a list, each of the same size (the final list may be smaller).

Parse/src/main/java/com/parse/LocalIdManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* Manages a set of local ids and possible mappings to global Parse objectIds. This class is
2020
* thread-safe.
2121
*/
22-
/** package */ class LocalIdManager {
22+
class LocalIdManager {
2323

2424
/**
2525
* Internal class representing all the information we know about a local id.

0 commit comments

Comments
 (0)