Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit c8ab8aa

Browse files
author
Brian Melton
committed
no more license txt in src
1 parent da22261 commit c8ab8aa

Some content is hidden

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

43 files changed

+41
-1399
lines changed

O365-auth/src/main/java/com/microsoft/AuthenticationManager.java

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3-
* See full license at the bottom of this file.
4-
*/
51
package com.microsoft;
62

73
import android.app.Activity;
@@ -145,32 +141,4 @@ private void removeUserId() {
145141
editor.apply();
146142
}
147143

148-
}
149-
// *********************************************************
150-
//
151-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
152-
//
153-
// Copyright (c) Microsoft Corporation
154-
// All rights reserved.
155-
//
156-
// MIT License:
157-
// Permission is hereby granted, free of charge, to any person obtaining
158-
// a copy of this software and associated documentation files (the
159-
// "Software"), to deal in the Software without restriction, including
160-
// without limitation the rights to use, copy, modify, merge, publish,
161-
// distribute, sublicense, and/or sell copies of the Software, and to
162-
// permit persons to whom the Software is furnished to do so, subject to
163-
// the following conditions:
164-
//
165-
// The above copyright notice and this permission notice shall be
166-
// included in all copies or substantial portions of the Software.
167-
//
168-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
169-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
170-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
171-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
172-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
173-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
174-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
175-
//
176-
// *********************************************************
144+
}

O365-auth/src/main/java/com/microsoft/AzureADModule.java

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3-
* See full license at the bottom of this file.
4-
*/
51
package com.microsoft;
62

73
import android.app.Activity;
@@ -128,32 +124,4 @@ public AuthenticationManager providesAuthenticationManager(
128124
mBuilder.mRedirectUri);
129125
}
130126

131-
}
132-
// *********************************************************
133-
//
134-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
135-
//
136-
// Copyright (c) Microsoft Corporation
137-
// All rights reserved.
138-
//
139-
// MIT License:
140-
// Permission is hereby granted, free of charge, to any person obtaining
141-
// a copy of this software and associated documentation files (the
142-
// "Software"), to deal in the Software without restriction, including
143-
// without limitation the rights to use, copy, modify, merge, publish,
144-
// distribute, sublicense, and/or sell copies of the Software, and to
145-
// permit persons to whom the Software is furnished to do so, subject to
146-
// the following conditions:
147-
//
148-
// The above copyright notice and this permission notice shall be
149-
// included in all copies or substantial portions of the Software.
150-
//
151-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
152-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
153-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
154-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
155-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
156-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
157-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
158-
//
159-
// *********************************************************
127+
}

O365-auth/src/main/java/com/microsoft/AzureAppCompatActivity.java

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3-
* See full license at the bottom of this file.
4-
*/
51
package com.microsoft;
62

73
import android.os.Bundle;
@@ -54,32 +50,4 @@ protected ObjectGraph getRootGraph() {
5450
return null;
5551
}
5652

57-
}
58-
// *********************************************************
59-
//
60-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
61-
//
62-
// Copyright (c) Microsoft Corporation
63-
// All rights reserved.
64-
//
65-
// MIT License:
66-
// Permission is hereby granted, free of charge, to any person obtaining
67-
// a copy of this software and associated documentation files (the
68-
// "Software"), to deal in the Software without restriction, including
69-
// without limitation the rights to use, copy, modify, merge, publish,
70-
// distribute, sublicense, and/or sell copies of the Software, and to
71-
// permit persons to whom the Software is furnished to do so, subject to
72-
// the following conditions:
73-
//
74-
// The above copyright notice and this permission notice shall be
75-
// included in all copies or substantial portions of the Software.
76-
//
77-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
78-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
79-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
80-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
81-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
82-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
83-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
84-
//
85-
// *********************************************************
53+
}

app/src/main/java/com/microsoft/o365_android_onenote_rest/BaseActivity.java

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file.
3-
*/
4-
51
package com.microsoft.o365_android_onenote_rest;
62

73
import com.microsoft.AzureADModule;
@@ -64,32 +60,4 @@ protected ObjectGraph getRootGraph() {
6460
public void inject(Object target) {
6561
mObjectGraph.inject(target);
6662
}
67-
}
68-
// *********************************************************
69-
//
70-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
71-
//
72-
// Copyright (c) Microsoft Corporation
73-
// All rights reserved.
74-
//
75-
// MIT License:
76-
// Permission is hereby granted, free of charge, to any person obtaining
77-
// a copy of this software and associated documentation files (the
78-
// "Software"), to deal in the Software without restriction, including
79-
// without limitation the rights to use, copy, modify, merge, publish,
80-
// distribute, sublicense, and/or sell copies of the Software, and to
81-
// permit persons to whom the Software is furnished to do so, subject to
82-
// the following conditions:
83-
//
84-
// The above copyright notice and this permission notice shall be
85-
// included in all copies or substantial portions of the Software.
86-
//
87-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
88-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
89-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
90-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
91-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
92-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
93-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
94-
//
95-
// *********************************************************
63+
}
Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file.
3-
*/
4-
51
package com.microsoft.o365_android_onenote_rest;
62

73
import android.os.Bundle;
@@ -16,32 +12,4 @@ public void onActivityCreated(@Nullable Bundle savedInstanceState) {
1612
((BaseActivity) getActivity()).inject(this);
1713
}
1814

19-
}
20-
// *********************************************************
21-
//
22-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
23-
//
24-
// Copyright (c) Microsoft Corporation
25-
// All rights reserved.
26-
//
27-
// MIT License:
28-
// Permission is hereby granted, free of charge, to any person obtaining
29-
// a copy of this software and associated documentation files (the
30-
// "Software"), to deal in the Software without restriction, including
31-
// without limitation the rights to use, copy, modify, merge, publish,
32-
// distribute, sublicense, and/or sell copies of the Software, and to
33-
// permit persons to whom the Software is furnished to do so, subject to
34-
// the following conditions:
35-
//
36-
// The above copyright notice and this permission notice shall be
37-
// included in all copies or substantial portions of the Software.
38-
//
39-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
40-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
41-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
42-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
43-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
44-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
45-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
46-
//
47-
// *********************************************************
15+
}

app/src/main/java/com/microsoft/o365_android_onenote_rest/SignInActivity.java

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file.
3-
*/
41
package com.microsoft.o365_android_onenote_rest;
52

63
import android.content.Intent;
@@ -149,32 +146,4 @@ public void onAuthComplete(final LiveStatus status,
149146
public void onAuthError(LiveAuthException exception, Object userState) {
150147
exception.printStackTrace();
151148
}
152-
}
153-
// *********************************************************
154-
//
155-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
156-
//
157-
// Copyright (c) Microsoft Corporation
158-
// All rights reserved.
159-
//
160-
// MIT License:
161-
// Permission is hereby granted, free of charge, to any person obtaining
162-
// a copy of this software and associated documentation files (the
163-
// "Software"), to deal in the Software without restriction, including
164-
// without limitation the rights to use, copy, modify, merge, publish,
165-
// distribute, sublicense, and/or sell copies of the Software, and to
166-
// permit persons to whom the Software is furnished to do so, subject to
167-
// the following conditions:
168-
//
169-
// The above copyright notice and this permission notice shall be
170-
// included in all copies or substantial portions of the Software.
171-
//
172-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
173-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
174-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
175-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
176-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
177-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
178-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
179-
//
180-
// *********************************************************
149+
}
Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file.
3-
*/
41
package com.microsoft.o365_android_onenote_rest;
52

63
import android.content.Intent;
@@ -39,32 +36,4 @@ public boolean onOptionsItemSelected(MenuItem item) {
3936
}
4037
return super.onOptionsItemSelected(item);
4138
}
42-
}
43-
// *********************************************************
44-
//
45-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
46-
//
47-
// Copyright (c) Microsoft Corporation
48-
// All rights reserved.
49-
//
50-
// MIT License:
51-
// Permission is hereby granted, free of charge, to any person obtaining
52-
// a copy of this software and associated documentation files (the
53-
// "Software"), to deal in the Software without restriction, including
54-
// without limitation the rights to use, copy, modify, merge, publish,
55-
// distribute, sublicense, and/or sell copies of the Software, and to
56-
// permit persons to whom the Software is furnished to do so, subject to
57-
// the following conditions:
58-
//
59-
// The above copyright notice and this permission notice shall be
60-
// included in all copies or substantial portions of the Software.
61-
//
62-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
63-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
64-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
65-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
66-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
67-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
68-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69-
//
70-
// *********************************************************
39+
}

app/src/main/java/com/microsoft/o365_android_onenote_rest/SnippetDetailFragment.java

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file.
3-
*/
41
package com.microsoft.o365_android_onenote_rest;
52

63
import android.annotation.TargetApi;
@@ -523,32 +520,4 @@ public void run() {
523520
});
524521
}
525522
}
526-
}
527-
// *********************************************************
528-
//
529-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
530-
//
531-
// Copyright (c) Microsoft Corporation
532-
// All rights reserved.
533-
//
534-
// MIT License:
535-
// Permission is hereby granted, free of charge, to any person obtaining
536-
// a copy of this software and associated documentation files (the
537-
// "Software"), to deal in the Software without restriction, including
538-
// without limitation the rights to use, copy, modify, merge, publish,
539-
// distribute, sublicense, and/or sell copies of the Software, and to
540-
// permit persons to whom the Software is furnished to do so, subject to
541-
// the following conditions:
542-
//
543-
// The above copyright notice and this permission notice shall be
544-
// included in all copies or substantial portions of the Software.
545-
//
546-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
547-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
548-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
549-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
550-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
551-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
552-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
553-
//
554-
// *********************************************************
523+
}

app/src/main/java/com/microsoft/o365_android_onenote_rest/SnippetListActivity.java

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/*
2-
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file.
3-
*/
41
package com.microsoft.o365_android_onenote_rest;
52

63
import android.content.Context;
@@ -76,32 +73,4 @@ public void onDisconnectClicked() {
7673
login.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
7774
startActivity(login);
7875
}
79-
}
80-
// *********************************************************
81-
//
82-
// Android-REST-API-Explorer, https://github.com/OneNoteDev/Android-REST-API-Explorer
83-
//
84-
// Copyright (c) Microsoft Corporation
85-
// All rights reserved.
86-
//
87-
// MIT License:
88-
// Permission is hereby granted, free of charge, to any person obtaining
89-
// a copy of this software and associated documentation files (the
90-
// "Software"), to deal in the Software without restriction, including
91-
// without limitation the rights to use, copy, modify, merge, publish,
92-
// distribute, sublicense, and/or sell copies of the Software, and to
93-
// permit persons to whom the Software is furnished to do so, subject to
94-
// the following conditions:
95-
//
96-
// The above copyright notice and this permission notice shall be
97-
// included in all copies or substantial portions of the Software.
98-
//
99-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
100-
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
101-
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
102-
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
103-
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
104-
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
105-
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
106-
//
107-
// *********************************************************
76+
}

0 commit comments

Comments
 (0)